Add Proxy Passthrough (#138)

- Repeat proxy pass through for the anonymous-hub that enables Login with device

Co-authored-by: Todd Martin <tmartin@bitwarden.com>
This commit is contained in:
Justin Baur
2023-10-03 17:34:11 -04:00
committed by GitHub
parent e506132859
commit 4af1b6f2a7

View File

@@ -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")}}