From a67d93a37e4d648de842ce9d63ddf0d5d311cc74 Mon Sep 17 00:00:00 2001 From: Karishma Shukla Date: Sat, 26 Apr 2025 15:59:01 +0530 Subject: [PATCH] feat: handle websocket connections --- nginx.conf | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index 29c6f990..a48fba88 100644 --- a/nginx.conf +++ b/nginx.conf @@ -12,12 +12,15 @@ server { # Proxy for backend location ^/(auth|storage|record|workflow|robot|proxy|api-docs)(/|$) { - proxy_pass http://localhost:8080; + proxy_pass http://localhost:8080; # change as per your setup proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade'; proxy_set_header Host $host; - proxy_cache_bypass $http_upgrade; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + # Add timeout configurations proxy_connect_timeout 60s;