mad-lawsuit/docker/supervisord.conf
TheMaddax d7517442d6 Fix PHP-FPM command in supervisord
- Change php-fpm8.3 to php-fpm (Alpine uses generic command)
- Fixes 502 Bad Gateway error
2025-12-17 20:16:31 -07:00

23 lines
477 B
Text

[supervisord]
nodaemon=true
user=root
logfile=/var/log/supervisor/supervisord.log
pidfile=/var/run/supervisord.pid
[program:php-fpm]
command=php-fpm -F
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
autorestart=true
startretries=0
[program:nginx]
command=nginx -g 'daemon off;'
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
autorestart=true
startretries=0