28 lines
629 B
Plaintext
28 lines
629 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
|
|
|
|
[program:sqlite-sync]
|
|
command=php /var/www/html/artisan transfer:sqlite sqlite/tempUser.sqlite --sync
|
|
autostart=true
|
|
autorestart=false
|
|
priority=4 |