From 4af1b6f2a7caefd8ef80c34bc91a183e6735fbd8 Mon Sep 17 00:00:00 2001 From: Justin Baur <19896123+justindbaur@users.noreply.github.com> Date: Tue, 3 Oct 2023 17:34:11 -0400 Subject: [PATCH] Add Proxy Passthrough (#138) - Repeat proxy pass through for the anonymous-hub that enables Login with device Co-authored-by: Todd Martin --- docker-unified/hbs/nginx-config.hbs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docker-unified/hbs/nginx-config.hbs b/docker-unified/hbs/nginx-config.hbs index 5b57673..86fecc9 100644 --- a/docker-unified/hbs/nginx-config.hbs +++ b/docker-unified/hbs/nginx-config.hbs @@ -134,6 +134,12 @@ server { proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection $http_connection; } + + location /notifications/anonymous-hub { + proxy_pass http://localhost:5006/anonymous-hub; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection $http_connection; + } {{/if}} {{#if (String.Equal env.BW_ENABLE_EVENTS "true")}}