diff options
author | Bill Nottingham <notting@splat.cc> | 2020-05-28 23:38:16 +0200 |
---|---|---|
committer | Bill Nottingham <notting@splat.cc> | 2020-06-03 01:51:16 +0200 |
commit | 559d917184a637671928ccb1b49bf14683691211 (patch) | |
tree | 3d0ecae5d3f8528e1979420e83bb2545714b71e3 /tools/docker-compose/supervisor.conf | |
parent | Merge pull request #7219 from AlanCoding/config_bug (diff) | |
download | awx-559d917184a637671928ccb1b49bf14683691211.tar.xz awx-559d917184a637671928ccb1b49bf14683691211.zip |
Make supervisor more consistent
Configs go in /etc, sockets in /var/run/supervisor for all invocations.
Diffstat (limited to 'tools/docker-compose/supervisor.conf')
-rw-r--r-- | tools/docker-compose/supervisor.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/docker-compose/supervisor.conf b/tools/docker-compose/supervisor.conf index 81731bb7a3..82e8962a9b 100644 --- a/tools/docker-compose/supervisor.conf +++ b/tools/docker-compose/supervisor.conf @@ -88,10 +88,10 @@ programs=awx-dispatcher,awx-receiver,awx-uwsgi,awx-daphne,awx-nginx,awx-wsbroadc priority=5 [unix_http_server] -file=/tmp/supervisor.sock +file=/var/run/supervisor/supervisor.sock [supervisorctl] -serverurl=unix:///tmp/supervisor.sock ; use a unix:// URL for a unix socket +serverurl=unix:///var/run/supervisor/supervisor.sock ; use a unix:// URL for a unix socket [rpcinterface:supervisor] supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface |