Files
investbrain/docker/supervisord.conf
T

39 lines
776 B
Plaintext
Raw Normal View History

2024-09-04 17:48:40 -05:00
[supervisord]
nodaemon=true
2025-01-25 20:31:40 -06:00
user=root
2024-09-04 17:48:40 -05:00
pidfile=/var/run/supervisord.pid
logfile=/var/log/supervisor/supervisord.log
2024-09-04 17:48:40 -05:00
2025-01-25 18:09:02 -06:00
[program:nginx]
2025-01-25 21:12:16 -06:00
command=nginx -g 'daemon off;'
2025-01-25 18:09:02 -06:00
autostart=true
autorestart=true
2025-01-25 21:06:54 -06:00
redirect_stderr=true
2025-01-25 18:09:02 -06:00
2024-09-04 17:48:40 -05:00
[program:php]
2025-01-25 21:17:27 -06:00
command=php-fpm -F
2024-09-04 17:48:40 -05:00
autostart=true
autorestart=true
2025-01-25 21:06:54 -06:00
redirect_stderr=true
2024-09-04 17:48:40 -05:00
[program:scheduler]
2024-09-04 19:09:49 -05:00
command=php artisan schedule:work
user=www-data
2024-09-04 17:48:40 -05:00
autorestart=true
2025-01-25 21:06:54 -06:00
redirect_stderr=true
stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0
2024-09-04 17:48:40 -05:00
[program:queue-worker]
process_name=%(program_name)s_%(process_num)02d
command=php artisan queue:work --sleep=3 --tries=1 --memory=256 --timeout=3600
user=www-data
2024-09-04 17:48:40 -05:00
autorestart=true
2025-01-25 21:06:54 -06:00
redirect_stderr=true
stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0
2024-09-04 17:48:40 -05:00
numprocs=2
stopasgroup=true
killasgroup=true
2024-09-04 17:48:40 -05:00
[supervisorctl]