From f32c8c96201e828b7cd163dcddcbb747f7e815cc Mon Sep 17 00:00:00 2001 From: Luis Pater Date: Fri, 10 Apr 2026 07:24:34 +0800 Subject: [PATCH] fix(handlers): update listener to bind on all interfaces instead of localhost Fixed: #2640 --- internal/api/handlers/management/auth_files.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/api/handlers/management/auth_files.go b/internal/api/handlers/management/auth_files.go index 30662dfe..fda871bb 100644 --- a/internal/api/handlers/management/auth_files.go +++ b/internal/api/handlers/management/auth_files.go @@ -142,7 +142,7 @@ func startCallbackForwarder(port int, provider, targetBase string) (*callbackFor stopForwarderInstance(port, prev) } - addr := fmt.Sprintf("127.0.0.1:%d", port) + addr := fmt.Sprintf("0.0.0.0:%d", port) ln, err := net.Listen("tcp", addr) if err != nil { return nil, fmt.Errorf("failed to listen on %s: %w", addr, err)