15 lines
No EOL
346 B
Text
15 lines
No EOL
346 B
Text
[supervisord]
|
|
nodaemon=true
|
|
|
|
[program:php-fpm]
|
|
command=/usr/sbin/php-fpm --nodaemonize
|
|
startsecs=5
|
|
autorestart=true
|
|
stderr_logfile=/var/log/php-fpm.err.log
|
|
stdout_logfile=/var/log/php-fpm.out.log
|
|
|
|
[program:nginx]
|
|
command=/usr/sbin/nginx -g "daemon off;"
|
|
autorestart=true
|
|
stderr_logfile=/var/log/nginx.err.log
|
|
stdout_logfile=/var/log/nginx.out.log |