diff --git a/templates/kilo/nginx.conf b/templates/kilo/nginx.conf index 7f5c51b..9718d2b 100644 --- a/templates/kilo/nginx.conf +++ b/templates/kilo/nginx.conf @@ -71,10 +71,14 @@ server { proxy_set_header Host $host; } - location /cloudApex/ { + location ~ /cloudApex { index index.html; } + location ~* /cloudapex { + rewrite (?i)/cloudapex(.*)$ /cloudApex$1 last; + } + location /vtap/ { alias /opt/pg/vtap; }