2017-02-13 00:13:15 +03:00
[supervisord]
umask = 022
minfds = 4096
nodaemon=true
2018-12-04 05:42:19 +03:00
[program:awx-dispatcher]
2019-05-09 20:45:29 +03:00
command = make dispatcher
2017-02-13 00:13:15 +03:00
autostart = true
autorestart = true
2019-05-10 14:46:53 +03:00
stopwaitsecs = 1
stopsignal=KILL
stopasgroup=true
killasgroup=true
2017-02-13 00:13:15 +03:00
redirect_stderr=true
stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0
2018-12-04 05:42:19 +03:00
[program:awx-receiver]
2019-05-09 20:45:29 +03:00
command = make receiver
2017-02-13 00:13:15 +03:00
autostart = true
autorestart = true
2019-05-10 14:46:53 +03:00
stopwaitsecs = 1
stopsignal=KILL
stopasgroup=true
killasgroup=true
2017-02-13 00:13:15 +03:00
redirect_stderr=true
stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0
2020-02-15 00:12:04 +03:00
[program:awx-wsbroadcast]
command = make wsbroadcast
autostart = true
autorestart = true
stopwaitsecs = 1
stopsignal=KILL
stopasgroup=true
killasgroup=true
redirect_stderr=true
stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0
2018-12-04 05:42:19 +03:00
[program:awx-uwsgi]
2017-02-13 00:13:15 +03:00
command = make uwsgi
autostart = true
autorestart = true
redirect_stderr=true
2019-05-08 20:10:52 +03:00
stopwaitsecs = 1
stopsignal=KILL
stopasgroup=true
killasgroup=true
2017-02-13 00:13:15 +03:00
stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0
2018-12-04 05:42:19 +03:00
[program:awx-daphne]
2019-05-09 20:45:29 +03:00
command = make daphne
2017-02-13 00:13:15 +03:00
autostart = true
autorestart = true
redirect_stderr=true
2020-02-15 00:12:04 +03:00
stopwaitsecs = 1
stopsignal=KILL
stopasgroup=true
killasgroup=true
2017-02-13 00:13:15 +03:00
stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0
2018-12-04 05:42:19 +03:00
[program:awx-nginx]
2019-05-09 20:45:29 +03:00
command = make nginx
2017-02-13 00:13:15 +03:00
autostart = true
autorestart = true
redirect_stderr=true
stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0
2018-12-04 05:42:19 +03:00
[group:tower-processes]
2020-02-21 18:02:47 +03:00
programs=awx-dispatcher,awx-receiver,awx-uwsgi,awx-daphne,awx-nginx,awx-wsbroadcast
2017-02-13 00:13:15 +03:00
priority=5
2017-02-14 01:33:28 +03:00
[unix_http_server]
file=/tmp/supervisor.sock
[supervisorctl]
serverurl=unix:///tmp/supervisor.sock ; use a unix:// URL for a unix socket
[rpcinterface:supervisor]
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface