From 69aedcb9ff93e65a3157fa590e629a0956618080 Mon Sep 17 00:00:00 2001 From: Karishma Shukla Date: Sat, 26 Apr 2025 17:09:35 +0530 Subject: [PATCH] chore: cleanup stale config --- nginx.conf | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/nginx.conf b/nginx.conf index a48fba88..23438209 100644 --- a/nginx.conf +++ b/nginx.conf @@ -31,23 +31,4 @@ server { proxy_intercept_errors on; error_page 502 503 504 /50x.html; } - - location ~ ^/(record|workflow|storage|auth|integration|proxy|api-docs) { - proxy_pass http://localhost:8080; - proxy_http_version 1.1; - proxy_set_header Upgrade $http_upgrade; - proxy_set_header Connection 'keep-alive'; # Ensure connections remain open - proxy_set_header Connection 'upgrade'; - proxy_set_header Host $host; - proxy_cache_bypass $http_upgrade; - - # Timeout configurations - proxy_connect_timeout 60s; - proxy_send_timeout 60s; - proxy_read_timeout 60s; - - # Error handling for these routes - proxy_intercept_errors on; - error_page 502 503 504 /50x.html; - } }