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

revert prefixing service names with bitwarden-

This commit is contained in:
Kyle Spearrin
2017-12-21 11:18:36 -05:00
parent 8609614711
commit 3425e95bf6
4 changed files with 17 additions and 17 deletions

View File

@ -169,29 +169,29 @@ server {{
sw.WriteLine($@"
location / {{
proxy_pass http://bitwarden-web/;
proxy_pass http://web/;
}}
location = /app-id.json {{
proxy_pass http://bitwarden-web/app-id.json;
proxy_pass http://web/app-id.json;
proxy_hide_header Content-Type;
add_header Content-Type $fido_content_type;
}}
location /attachments/ {{
proxy_pass http://bitwarden-attachments/;
proxy_pass http://attachments/;
}}
location /api/ {{
proxy_pass http://bitwarden-api/;
proxy_pass http://api/;
}}
location /identity/ {{
proxy_pass http://bitwarden-identity/;
proxy_pass http://identity/;
}}
location /icons/ {{
proxy_pass http://bitwarden-icons/;
proxy_pass http://icons/;
}}
}}");
}