23 lines
492 B
Plaintext
23 lines
492 B
Plaintext
[supervisord]
|
|
nodaemon=true
|
|
|
|
[program:php-fpm]
|
|
command=docker-php-entrypoint php-fpm
|
|
autostart=true
|
|
autorestart=true
|
|
priority=1
|
|
|
|
[program:queue-worker]
|
|
directory=/var/www/html
|
|
command=php 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 |