mirror of
https://github.com/bitwarden/server.git
synced 2025-04-09 07:08:15 -05:00
correct identity pathing from nginx
This commit is contained in:
parent
38728143d8
commit
f0210cd798
@ -100,10 +100,6 @@ server {
|
|||||||
proxy_pass http://api:5000/;
|
proxy_pass http://api:5000/;
|
||||||
}
|
}
|
||||||
|
|
||||||
location /identity/ {
|
|
||||||
proxy_pass http://identity:5000/;
|
|
||||||
}
|
|
||||||
|
|
||||||
location /sso/ {
|
location /sso/ {
|
||||||
proxy_pass http://sso:5000/;
|
proxy_pass http://sso:5000/;
|
||||||
}
|
}
|
||||||
@ -126,6 +122,15 @@ server {
|
|||||||
proxy_pass http://events:5000/;
|
proxy_pass http://events:5000/;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
location /identity {
|
||||||
|
proxy_pass http://identity:5000;
|
||||||
|
{{#if Ssl}}
|
||||||
|
include /etc/nginx/security-headers-ssl.conf;
|
||||||
|
{{/if}}
|
||||||
|
include /etc/nginx/security-headers.conf;
|
||||||
|
add_header X-Frame-Options SAMEORIGIN;
|
||||||
|
}
|
||||||
|
|
||||||
location /admin {
|
location /admin {
|
||||||
proxy_pass http://admin:5000;
|
proxy_pass http://admin:5000;
|
||||||
{{#if Ssl}}
|
{{#if Ssl}}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user