mirror of https://github.com/MISP/misp-docker
44 lines
927 B
Plaintext
44 lines
927 B
Plaintext
[supervisord]
|
|
nodaemon=true
|
|
user=root
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
|
|
[program:nginx]
|
|
command=/entrypoint_nginx.sh
|
|
autorestart=true
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
|
|
[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
|
|
|
|
[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
|
|
command=/entrypoint_cron.sh
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
autostart=true
|