23 lines
483 B
Plaintext
23 lines
483 B
Plaintext
|
[supervisord]
|
||
|
nodaemon=true
|
||
|
|
||
|
[program:php-fpm]
|
||
|
command=docker-php-entrypoint php-fpm
|
||
|
autostart=true
|
||
|
autorestart=true
|
||
|
priority=1
|
||
|
|
||
|
[program:queue-worker]
|
||
|
command=php /var/www/html/artisan queue:work --daemon --timeout=3600 --tries=1 --queue=default
|
||
|
autostart=true
|
||
|
autorestart=true
|
||
|
priority=2
|
||
|
stdout_logfile=/var/www/html/storage/logs/queue.log
|
||
|
stderr_logfile=/var/www/html/storage/logs/queue_error.log
|
||
|
|
||
|
[program:schedule-run]
|
||
|
command=cron -f
|
||
|
autostart=true
|
||
|
autorestart=true
|
||
|
priority=3
|