oggit/docker/supervisord/supervisor.conf

22 lines
471 B
Plaintext

[supervisord]
nodaemon=true
[program:nginx]
command=nginx -g 'daemon off;'
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:php-fpm]
command=php-fpm8.2 -F
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
environment=PATH=/opt/mypath:%(ENV_PATH)s,OGGIT_URL=%(ENV_OGGIT_URL)s