misp-docker/server/files/etc/supervisor/supervisor.conf

44 lines
927 B
Plaintext
Raw Normal View History

2019-11-25 22:58:18 +01:00
[supervisord]
nodaemon=true
user=root
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
2020-02-20 02:21:49 +01:00
[program:nginx]
command=/entrypoint_nginx.sh
2019-11-25 22:58:18 +01:00
autorestart=true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
2020-02-20 02:21:49 +01:00
[program:php-fpm]
command=/usr/sbin/php-fpm7.3 -R -F
process_name=%(program_name)s_%(process_num)02d
numprocs=1
autostart=true
autorestart=false
startsecs=0
redirect_stderr=true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
2019-11-25 22:58:18 +01:00
[program:workers]
command=/entrypoint_workers.sh
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
autostart=true
[program:cron]
environment=CRON_USER_ID=%(ENV_CRON_USER_ID)s
2019-11-25 22:58:18 +01:00
command=/entrypoint_cron.sh
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
autostart=true