Chore: Add gerrit maven verify GHA workflow
[sdnc/oam.git] / installation / sdnc-web / src / main / resources / https_site.conf
index d2d6ecd..734a48b 100644 (file)
@@ -68,36 +68,18 @@ server {
 
     server_name _;
 
-    location ~ ^/$  {
-        return 301 /odlux/index.html;
-    }
-    location ~ ^/help/$  {
-        try_files /help/$args.json $uri;
-    }
-    location ~ ^/transportpce  {
-        if ($request_uri ~* "/transportpce/(.*)") { 
-            proxy_pass TRPCEURL/$1;
-        }
-    }
-    location ~ ^/topology  {
-        proxy_pass TOPOURL;
-    }
-    location ~ ^/tiles/  {
-        resolver 1.1.1.1;
-        if ($request_uri ~* "/tiles/(.*)") { 
-            proxy_pass TILEURL/$1;
-        }
-    }
-    location /  {
-        try_files $uri $uri/ @backend;
-    }
-    location ^/websocket$ {
-        proxy_pass SDNRPROTOCOL://SDNRHOST:SDNRPORT/websocket;
-        proxy_http_version 1.1;
-        proxy_set_header Upgrade $http_upgrade;
-            proxy_set_header Connection "upgrade";
-    }
-    location @backend {
-        proxy_pass SDNRPROTOCOL://SDNRHOST:SDNRPORT;
-    }
+    include server_blocks/location.rules;
+  
+    gzip on;
+    gzip_min_length 1000;
+    gzip_comp_level 5;
+    gzip_proxied any;
+    gzip_vary on;
+    gzip_types text/plain
+                application/json
+                application/xml
+                application/yang-data+json
+                application/yang-data+xml
+                text/javascript
+                application/javascript;
 }