2017-03-14 15:05:22 +01:00
|
|
|
[supervisord]
|
|
|
|
nodaemon=true
|
2018-01-04 23:57:33 +01:00
|
|
|
[supervisorctl]
|
|
|
|
[inet_http_server]
|
|
|
|
port = 127.0.0.1:9001
|
|
|
|
[rpcinterface:supervisor]
|
|
|
|
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
|
|
|
|
|
2017-03-14 15:05:22 +01:00
|
|
|
[program:laravel-worker]
|
|
|
|
process_name=%(program_name)s_%(process_num)02d
|
2017-04-03 07:30:41 +02:00
|
|
|
command=php /var/www/artisan queue:work --sleep=3 --tries=3 --daemon
|
2017-03-14 15:05:22 +01:00
|
|
|
autostart=true
|
|
|
|
autorestart=true
|
|
|
|
numprocs=8
|
2017-04-03 07:30:41 +02:00
|
|
|
redirect_stderr=true
|