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]
2018-08-08 20:41:07 +03:00
command = awx-manage run_dispatcher
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
[program:awx-receiver]
2017-02-13 19:45:11 +03:00
command = python manage.py run_callback_receiver
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
[program:awx-runworker]
2017-05-03 22:19:12 +03:00
command = python manage.py runworker
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
[program:awx-uwsgi]
2017-02-13 00:13:15 +03:00
command = make uwsgi
autostart = true
autorestart = true
redirect_stderr=true
stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0
2018-12-04 05:42:19 +03:00
[program:awx-daphne]
2017-02-13 19:45:11 +03:00
command = daphne -b 0.0.0.0 -p 8051 awx.asgi:channel_layer
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
[program:awx-nginx]
2017-02-13 19:45:11 +03:00
command = nginx -g "daemon off;"
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
[program:awx-jupyter]
2017-12-06 07:46:18 +03:00
command = make jupyter
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]
programs=awx-dispatcher,awx-receiver,awx-runworker,awx-uwsgi,awx-daphne,awx-nginx
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