24 lines
517 B
Plaintext
24 lines
517 B
Plaintext
[supervisord]
|
|
nodaemon=true
|
|
user=root
|
|
|
|
[program:php-fpm]
|
|
command=php-fpm
|
|
autostart=true
|
|
autorestart=true
|
|
priority=5
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
|
|
[program:laravel-worker]
|
|
process_name=%(program_name)s_%(process_num)02d
|
|
command=php /var/www/test-fhr/artisan queue:work --sleep=3 --tries=3
|
|
autostart=true
|
|
autorestart=true
|
|
user=www-data
|
|
numprocs=4
|
|
redirect_stderr=true
|
|
stdout_logfile=/var/www/test-fhr/storage/logs/worker.log
|
|
stopwaitsecs=3600 |