From d63682b1182c1ff5ddb83294f3a104c7a96a9154 Mon Sep 17 00:00:00 2001 From: dragongoose Date: Wed, 13 Dec 2023 14:44:42 +0000 Subject: [PATCH] Update backend-nginx.conf --- backend-nginx.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/backend-nginx.conf b/backend-nginx.conf index ab87773..a9be7c1 100644 --- a/backend-nginx.conf +++ b/backend-nginx.conf @@ -9,6 +9,10 @@ server { location / { proxy_pass http://localhost:7100; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "Upgrade"; + proxy_set_header Host $host; } }