nginx changes

This commit is contained in:
Junaid Ali 2016-05-03 06:48:06 -04:00
parent 06665aff9d
commit 1af750f3af
1 changed files with 5 additions and 1 deletions

View File

@ -71,10 +71,14 @@ server {
proxy_set_header Host $host; proxy_set_header Host $host;
} }
location /cloudApex/ { location ~ /cloudApex {
index index.html; index index.html;
} }
location ~* /cloudapex {
rewrite (?i)/cloudapex(.*)$ /cloudApex$1 last;
}
location /vtap/ { location /vtap/ {
alias /opt/pg/vtap; alias /opt/pg/vtap;
} }