From d7a81a2f7da9c5faed1dc19f655d8a21984f1f80 Mon Sep 17 00:00:00 2001 From: CTO Agent Date: Sun, 19 Jul 2026 14:31:44 +0000 Subject: [PATCH] Fix Dozzle WebSocket connectivity by forcing IPv4 upstream oauth2-proxy was resolving localhost to IPv6 [::1]:8080 instead of IPv4 127.0.0.1:8080, causing connection refused errors on the streaming endpoints (/api/events/stream and /api/hosts/.../logs/stream). Changed upstream URL from http://localhost:8080 to http://127.0.0.1:8080 to force IPv4 resolution. Co-Authored-By: Paperclip --- apps/dozzle/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dozzle/deployment.yaml b/apps/dozzle/deployment.yaml index 2af262b..737d098 100644 --- a/apps/dozzle/deployment.yaml +++ b/apps/dozzle/deployment.yaml @@ -56,7 +56,7 @@ spec: protocol: TCP args: - --http-address=0.0.0.0:4180 - - --upstream=http://localhost:8080 + - --upstream=http://127.0.0.1:8080 - --provider=oidc - --oidc-issuer-url=https://auth.basicstack.de - --redirect-url=https://dozzle.basicstack.de/oauth2/callback