mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-09 09:27:03 +03:00
40 lines
866 B
Text
40 lines
866 B
Text
[supervisord]
|
|
nodaemon=true
|
|
user=root
|
|
logfile=/dev/null
|
|
logfile_maxbytes=0
|
|
|
|
[program:nginx]
|
|
command=nginx -c /etc/nginx/nginx.conf -g 'daemon off;'
|
|
process_name=%(program_name)s_%(process_num)02d
|
|
user=root
|
|
numprocs=1
|
|
autostart=true
|
|
autorestart=false
|
|
startsecs=0
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
|
|
[program:php-fpm]
|
|
command=php-fpm -F
|
|
process_name=%(program_name)s_%(process_num)02d
|
|
user=root
|
|
numprocs=1
|
|
autostart=true
|
|
autorestart=false
|
|
startsecs=0
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
|
|
[eventlistener:subprocess-stopped]
|
|
command=php /listener.php
|
|
process_name=%(program_name)s_%(process_num)02d
|
|
user=root
|
|
numprocs=1
|
|
events=PROCESS_STATE_EXITED,PROCESS_STATE_STOPPED,PROCESS_STATE_FATAL
|
|
autostart=true
|
|
autorestart=unexpected
|