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

add bitwarden- prefix to docker service names

This commit is contained in:
Kyle Spearrin
2017-12-11 11:49:10 -05:00
parent 59fc1df754
commit 3d05c9208f
3 changed files with 15 additions and 15 deletions

View File

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