29 lines
717 B
Plaintext
29 lines
717 B
Plaintext
[supervisord]
|
|
nodaemon=true
|
|
user=invoiceninja
|
|
pidfile=/var/run/supervisord/supervisord.pid
|
|
logfile=/dev/null ; nodaemon will cause logs to go to stdout
|
|
logfile_maxbytes=0
|
|
loglevel=error
|
|
|
|
[program:php-fpm]
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
command=php-fpm
|
|
|
|
[program:scheduler]
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
command=php artisan schedule:work
|
|
|
|
[program:queue-worker]
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
numprocs=2
|
|
command=php artisan queue:work --sleep=3 --tries=1 --memory=1024 --timeout=3600 --daemon |