From 89ead04d8a82d9cd0246599adac26eec4d76394a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9C=A0=EB=AF=B8=EB=9D=BC?= Date: Tue, 3 Dec 2024 14:04:59 +0900 Subject: [PATCH] refactor: Update Nginx proxy settings for WebSocket and API routes --- nginx.conf | 2 -- 1 file changed, 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index 002bc3ed..78cbbc02 100644 --- a/nginx.conf +++ b/nginx.conf @@ -22,8 +22,6 @@ server { location /api { proxy_pass http://server:3000; 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; }