From ba457055716431dfae62ae951fa8a6cf7132e419 Mon Sep 17 00:00:00 2001 From: Jamie Curnow Date: Sat, 8 May 2021 12:17:10 +1000 Subject: [PATCH] Partial revert of 421934e Keeping the server block of websocket definitions but also bringing back the location block after discussions on #1067 --- backend/templates/proxy_host.conf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/backend/templates/proxy_host.conf b/backend/templates/proxy_host.conf index e547968..538b85e 100644 --- a/backend/templates/proxy_host.conf +++ b/backend/templates/proxy_host.conf @@ -53,6 +53,12 @@ proxy_http_version 1.1; {% include "_hsts.conf" %} + {% if allow_websocket_upgrade == 1 or allow_websocket_upgrade == true %} + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection $http_connection; + proxy_http_version 1.1; + {% endif %} + # Proxy! include conf.d/include/proxy.conf; }