From 53cfba3159e760864594639451affa6a1fd37f56 Mon Sep 17 00:00:00 2001 From: Glenn Date: Sat, 17 May 2025 15:39:44 +0200 Subject: [PATCH 1/2] feat: add support for supervisorctl --- supervisord.conf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/supervisord.conf b/supervisord.conf index 9849c5b..c6310ae 100644 --- a/supervisord.conf +++ b/supervisord.conf @@ -7,3 +7,9 @@ logfile_maxbytes=50MB ; maximum size of logfile before logfile_backups=10 ; number of backed up logfiles loglevel=error +[unix_http_server] +file=/run/supervisord.sock + +[supervisorctl] +serverurl=unix:///run/supervisord.sock + From e0b2d1cde8b5ac0773f9ba332bf588199937c871 Mon Sep 17 00:00:00 2001 From: Glenn Date: Sat, 17 May 2025 15:50:14 +0200 Subject: [PATCH 2/2] fix: include files from /etc/supervisor/conf.d/* --- supervisord.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/supervisord.conf b/supervisord.conf index c6310ae..4df1b27 100644 --- a/supervisord.conf +++ b/supervisord.conf @@ -13,3 +13,5 @@ file=/run/supervisord.sock [supervisorctl] serverurl=unix:///run/supervisord.sock +[include] +files = /etc/supervisor/conf.d/*.conf