From 593cb9d30057d2a8b117d9e2600d2a304ba5ff75 Mon Sep 17 00:00:00 2001 From: fkwp Date: Tue, 5 May 2026 12:02:36 +0200 Subject: [PATCH] fix nginx config as the missing 50x.html escalates 502 errors to 404 errors --- backend/dev_nginx.conf | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/backend/dev_nginx.conf b/backend/dev_nginx.conf index 834adaeb..6ec0d701 100644 --- a/backend/dev_nginx.conf +++ b/backend/dev_nginx.conf @@ -42,8 +42,6 @@ server { proxy_set_header Host $host; } - error_page 500 502 503 504 /50x.html; - } # Synapse reverse proxy including .well-known/matrix/client @@ -91,8 +89,6 @@ server { proxy_set_header Host $host; } - error_page 500 502 503 504 /50x.html; - } # MatrixRTC reverse proxy @@ -144,8 +140,6 @@ server { proxy_pass http://livekit-sfu:7880/; } - error_page 500 502 503 504 /50x.html; - } # MatrixRTC reverse proxy @@ -192,8 +186,6 @@ server { proxy_pass http://livekit-sfu-1:17880/; } - error_page 500 502 503 504 /50x.html; - } # Convenience reverse proxy for the call.m.localhost domain to element call @@ -243,7 +235,6 @@ server { proxy_pass http://host.docker.internal:8080; } - error_page 500 502 503 504 /50x.html; } @@ -276,8 +267,6 @@ server { } - error_page 500 502 503 504 /50x.html; - } # Convenience reverse proxy app.othersite.m.localhost for element web @@ -309,6 +298,4 @@ server { } - error_page 500 502 503 504 /50x.html; - }