mirror of
https://github.com/nokonoko/Uguu.git
synced 2024-01-06 13:35:15 +00:00
33 lines
632 B
Plaintext
33 lines
632 B
Plaintext
|
[supervisord]
|
||
|
nodaemon=true
|
||
|
logfile=/dev/null
|
||
|
logfile_maxbytes=0
|
||
|
pidfile=/run/supervisord.pid
|
||
|
|
||
|
[program:php-fpm]
|
||
|
command=php-fpm8 -F
|
||
|
stdout_logfile=/dev/stdout
|
||
|
stdout_logfile_maxbytes=0
|
||
|
stderr_logfile=/dev/stderr
|
||
|
stderr_logfile_maxbytes=0
|
||
|
autorestart=false
|
||
|
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=false
|
||
|
startretries=0
|
||
|
|
||
|
[program:crond]
|
||
|
command=crond -b
|
||
|
stdout_logfile=/dev/stdout
|
||
|
stdout_logfile_maxbytes=0
|
||
|
stderr_logfile=/dev/stderr
|
||
|
stderr_logfile_maxbytes=0
|
||
|
autorestart=false
|
||
|
startretries=0
|