26 lines
605 B
Plaintext
26 lines
605 B
Plaintext
[program:laravel-worker]
|
|
process_name=%(program_name)s_%(process_num)02d
|
|
command=php /code/artisan queue:work --sleep=3 --tries=3 --max-time=3600
|
|
autostart=true
|
|
autorestart=true
|
|
stopasgroup=true
|
|
killasgroup=true
|
|
user=application
|
|
numprocs=1
|
|
redirect_stderr=true
|
|
stdout_logfile=/docker.stdout
|
|
stdout_logfile_maxbytes=0
|
|
|
|
[program:laravel-scheduler]
|
|
process_name=%(program_name)s_%(process_num)02d
|
|
command=php /code/artisan schedule:work
|
|
autostart=true
|
|
autorestart=true
|
|
stopasgroup=true
|
|
killasgroup=true
|
|
user=application
|
|
numprocs=1
|
|
redirect_stderr=true
|
|
stdout_logfile=/docker.stdout
|
|
stdout_logfile_maxbytes=0
|