vd/etc/supervisor.conf
2019-01-24 16:27:12 +08:00

24 lines
655 B
Plaintext

[program:vd-worker-default]
process_name=%(program_name)s_%(process_num)02d
command=php /www/vd/artisan queue:work --queue=default --memory=4096 --tries=3
autostart=true
autorestart=true
user=www
numprocs=3
redirect_stderr=true
stdout_logfile = /var/log/vd-queue.log
stderr_logfile_maxbytes=1MB
stdout_logfile_maxbytes=1MB
[program:vd-worker-sync]
process_name=%(program_name)s_%(process_num)02d
command=php /www/vd/artisan queue:work --queue=sync --memory=4096 --tries=3 --timeout=600
autostart=true
autorestart=true
user=www
numprocs=3
redirect_stderr=true
stdout_logfile = /var/log/vd-queue.log
stderr_logfile_maxbytes=1MB
stdout_logfile_maxbytes=1MB