Files
AFC-Demo/deploy/supervisord.conf
T

27 lines
531 B
Plaintext
Raw Normal View History

2025-10-23 07:58:06 +02:00
[supervisord]
nodaemon=true
logfile=/var/log/supervisor/supervisord.log
2025-10-23 12:22:27 +02:00
pidfile=/run/supervisord.pid
2025-10-23 07:58:06 +02:00
[program:php-fpm]
2025-10-23 12:22:27 +02:00
command=/usr/sbin/php-fpm82 -F
autostart=true
2025-10-23 07:58:06 +02:00
autorestart=true
2025-10-23 12:22:27 +02:00
startretries=3
2025-10-23 07:58:06 +02:00
priority=10
2025-10-23 12:22:27 +02:00
stdout_logfile=/dev/fd/1
2025-10-23 07:58:06 +02:00
stdout_logfile_maxbytes=0
2025-10-23 12:22:27 +02:00
stderr_logfile=/dev/fd/2
2025-10-23 07:58:06 +02:00
stderr_logfile_maxbytes=0
[program:nginx]
2025-10-23 12:22:27 +02:00
command=/usr/sbin/nginx -g 'daemon off;'
autostart=true
2025-10-23 07:58:06 +02:00
autorestart=true
2025-10-23 12:22:27 +02:00
startretries=3
2025-10-23 07:58:06 +02:00
priority=20
2025-10-23 12:22:27 +02:00
stdout_logfile=/dev/fd/1
2025-10-23 07:58:06 +02:00
stdout_logfile_maxbytes=0
2025-10-23 12:22:27 +02:00
stderr_logfile=/dev/fd/2
2025-10-23 07:58:06 +02:00
stderr_logfile_maxbytes=0