From 421934efedd12ba047f78243fb25388a613e29f8 Mon Sep 17 00:00:00 2001 From: Daniel Porter Date: Tue, 13 Apr 2021 20:04:35 +0100 Subject: [PATCH] Move 'Allow Websockets' definitions to host root configuration This fixes issues with these settings not applying to custom locations defined under hosts. --- backend/templates/proxy_host.conf | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/backend/templates/proxy_host.conf b/backend/templates/proxy_host.conf index 738cdcb..e547968 100644 --- a/backend/templates/proxy_host.conf +++ b/backend/templates/proxy_host.conf @@ -13,6 +13,13 @@ server { {% include "_hsts.conf" %} {% include "_forced_ssl.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 %} + + access_log /data/logs/proxy_host-{{ id }}.log proxy; {{ advanced_config }} @@ -46,12 +53,6 @@ server { {% 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; }