1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 07:36:14 -05:00

Allow self-hosted notifications to work for Login with Device approval (#2934)

* Added anonymous hub context.

* Added anonymous hub to nginx setup.

* Added deserialization options to ignore case on deserialization.
This commit is contained in:
Todd Martin
2023-05-31 11:12:43 -04:00
committed by GitHub
parent a62d0c5e52
commit c08e2a7473
4 changed files with 18 additions and 3 deletions

View File

@ -132,6 +132,12 @@ server {
proxy_set_header Connection $http_connection;
}
location /notifications/anonymous-hub {
proxy_pass http://notifications:5000/anonymous-hub;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
}
location /events/ {
proxy_pass http://events:5000/;
}