From cc0d93060d7112adf31506e6969ddfa69c32b7de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sat, 22 Nov 2025 13:19:02 +0100 Subject: [PATCH] feat: expose Supervisor web UI for proxy access MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Disable Supervisor's built-in authentication and expose on all interfaces (0.0.0.0:9001) to enable reverse proxy access via nginx and Authelia SSO. Authentication is now handled by Authelia at supervisor.ai.pivoine.art. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- supervisord.conf | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/supervisord.conf b/supervisord.conf index 00b0fdd..8303703 100644 --- a/supervisord.conf +++ b/supervisord.conf @@ -15,11 +15,12 @@ serverurl=unix:///workspace/supervisor.sock [rpcinterface:supervisor] supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface -# Web interface for monitoring (localhost only) +# Web interface for monitoring (proxied via nginx + Authelia) [inet_http_server] -port=127.0.0.1:9001 -username=admin -password=runpod2024 +port=0.0.0.0:9001 +# Authentication disabled - handled by Authelia SSO +# username=admin +# password=runpod2024 # ComfyUI Server [program:comfyui]