Browse Source

Merge branch 'bugfix/semcast-adminstration-route-reaload-404' into 'master'

bugfix/semcast-adminstration-route-reaload-404

See merge request devops/k8s-deployments!22
feat/rm-qa
Domagoj Zecevic 4 years ago
parent
commit
c832b32cfc
  1. 7
      dev/semcust/deployment.yaml
  2. 7
      qa/semcust/deployment.yaml

7
dev/semcust/deployment.yaml

@ -125,6 +125,13 @@ data:
try_files $uri $uri /index.html =404;
}
location /administration {
root /srv/semcust;
#add_header X-Frame-Options "SAMEORIGIN";
index index.html index.htm;
try_files $uri $uri /index.html =404;
}
location ~ ^/api {
proxy_pass http://backend;
proxy_redirect off;

7
qa/semcust/deployment.yaml

@ -124,6 +124,13 @@ data:
try_files $uri $uri /index.html =404;
}
location /administration {
root /srv/semcust;
#add_header X-Frame-Options "SAMEORIGIN";
index index.html index.htm;
try_files $uri $uri /index.html =404;
}
location ~ ^/api {
proxy_pass http://backend;
proxy_redirect off;

Loading…
Cancel
Save