baseimage-tutorial-framework/supervisor/supervisord.conf

25 lines
529 B
Plaintext
Raw Normal View History

2017-11-21 12:19:37 +00:00
[supervisord]
user=root
logfile=/dev/null
logfile_maxbytes=0
loglevel = debug
2017-11-21 12:19:37 +00:00
pidfile = /tmp/supervisord.pid
strip_ansi=true
2017-11-21 12:19:37 +00:00
2018-01-10 15:31:36 +00:00
[inet_http_server]
port = 127.0.0.1:%(ENV_TFW_SUPERVISOR_HTTP_PORT)s
[rpcinterface:supervisor]
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
[supervisorctl]
2018-01-30 09:51:23 +00:00
serverurl=http://127.0.0.1:%(ENV_TFW_SUPERVISOR_HTTP_PORT)s
2018-01-10 15:55:48 +00:00
[program:nginx]
command=/usr/sbin/nginx -g 'daemon off;'
autostart=true
autorestart=true
[include]
files=%(ENV_TFW_SUPERVISORD_COMPONENTS)s/*.conf