From d53a8e7ed9e160068f06a6fc97158bb79cad3637 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Thu, 19 Oct 2023 09:22:58 +0200 Subject: [PATCH] Update nginx.conf --- conf/nginx.conf | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 50b908f..5b8c413 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -2,14 +2,12 @@ location __PATH__/ { proxy_pass https://127.0.0.1:__PORT__/; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "Upgrade"; + proxy_set_header Host $host; - #Proxy Settings - proxy_redirect off; - proxy_set_header Host $host:$server_port; #this redirects the link without port no - proxy_set_header X-Real-IP $remote_addr; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - - proxy_max_temp_file_size 0; + proxy_max_temp_file_size 0; proxy_connect_timeout 90; proxy_send_timeout 90; proxy_read_timeout 90;