Browse Source

correct identity pathing from nginx

pull/901/head
Kyle Spearrin 5 years ago
parent
commit
f0210cd798
  1. 13
      util/Setup/Templates/NginxConfig.hbs

13
util/Setup/Templates/NginxConfig.hbs

@ -100,10 +100,6 @@ server { @@ -100,10 +100,6 @@ server {
proxy_pass http://api:5000/;
}
location /identity/ {
proxy_pass http://identity:5000/;
}
location /sso/ {
proxy_pass http://sso:5000/;
}
@ -126,6 +122,15 @@ server { @@ -126,6 +122,15 @@ server {
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 {
proxy_pass http://admin:5000;
{{#if Ssl}}

Loading…
Cancel
Save