24 lines
467 B
Text
24 lines
467 B
Text
|
|
[supervisord]
|
||
|
|
nodaemon=true
|
||
|
|
logfile=/dev/null
|
||
|
|
logfile_maxbytes=0
|
||
|
|
pidfile=/run/supervisord.pid
|
||
|
|
|
||
|
|
[program:php-fpm]
|
||
|
|
command=php-fpm --nodaemonize
|
||
|
|
autostart=true
|
||
|
|
autorestart=true
|
||
|
|
stdout_logfile=/dev/stdout
|
||
|
|
stdout_logfile_maxbytes=0
|
||
|
|
stderr_logfile=/dev/stderr
|
||
|
|
stderr_logfile_maxbytes=0
|
||
|
|
|
||
|
|
[program:nginx]
|
||
|
|
command=nginx -g "daemon off;"
|
||
|
|
autostart=true
|
||
|
|
autorestart=true
|
||
|
|
stdout_logfile=/dev/stdout
|
||
|
|
stdout_logfile_maxbytes=0
|
||
|
|
stderr_logfile=/dev/stderr
|
||
|
|
stderr_logfile_maxbytes=0
|