From b451669705dd63ec1e1c7c14c990a47f9e1cef83 Mon Sep 17 00:00:00 2001 From: Jon Date: Sun, 12 Nov 2023 21:20:18 +0930 Subject: [PATCH] fix(health_check): use the default socket name for supervisord !1 --- includes/etc/supervisor/supervisord.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/etc/supervisor/supervisord.conf b/includes/etc/supervisor/supervisord.conf index 8e3b6a4..85661ea 100644 --- a/includes/etc/supervisor/supervisord.conf +++ b/includes/etc/supervisor/supervisord.conf @@ -1,6 +1,6 @@ [unix_http_server] -file=/var/run/supervisor.sock ; (the path to the socket file) +file=/var/run/supervisord.sock ; (the path to the socket file) chmod=0700 ; sockef file mode (default 0700) ;[inet_http_server] @@ -22,7 +22,7 @@ user=root supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface [supervisorctl] -serverurl=unix:///var/run/supervisor.sock ; use a unix:// URL for a unix socket +serverurl=unix:///var/run/supervisord.sock ; use a unix:// URL for a unix socket ; The [include] section can just contain the "files" setting. This ; setting can list multiple files (separated by whitespace or