31 lines
738 B
Plaintext
31 lines
738 B
Plaintext
[supervisord]
|
|
nodaemon=true
|
|
user=root
|
|
logfile=/var/log/supervisor/supervisord.log
|
|
pidfile=/var/run/supervisord.pid
|
|
|
|
[program:laravel-worker]
|
|
process_name=%(program_name)s_%(process_num)02d
|
|
command=php /var/www/artisan queue:work --queue=default --timeout=82800 --tries=1
|
|
autostart=true
|
|
autorestart=true
|
|
numprocs=1
|
|
redirect_stderr=true
|
|
stdout_logfile=/var/www/storage/logs/worker.log
|
|
stopasgroup=true
|
|
killasgroup=true
|
|
user=www-data
|
|
priority=10
|
|
|
|
[program:laravel-scheduler]
|
|
process_name=%(program_name)s_%(process_num)02d
|
|
command=php /var/www/artisan schedule:work
|
|
autostart=true
|
|
autorestart=true
|
|
numprocs=1
|
|
redirect_stderr=true
|
|
stdout_logfile=/var/www/storage/logs/scheduler.log
|
|
stopasgroup=true
|
|
killasgroup=true
|
|
user=www-data
|
|
priority=20 |