24 lines
444 B
Text
24 lines
444 B
Text
|
[supervisord]
|
||
|
user=root
|
||
|
nodaemon=true
|
||
|
logfile=/dev/null
|
||
|
logfile_maxbytes=0
|
||
|
pidfile=/run/supervisord.pid
|
||
|
|
||
|
[program:fpm]
|
||
|
command=php-fpm83 -F
|
||
|
autostart=true
|
||
|
priority=1000
|
||
|
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
|
||
|
stdout_logfile=/dev/stdout
|
||
|
stdout_logfile_maxbytes=0
|
||
|
stderr_logfile=/dev/stderr
|
||
|
stderr_logfile_maxbytes=0
|