bugfix - Failed to create new rules via Holmes GUI
[holmes/rule-management.git] / rulemgt-standalone / src / main / assembly / nginx-https.conf
index fda1ab1..c89c0bd 100644 (file)
@@ -14,7 +14,7 @@ events {
 
 
 http {
-    include       mime.types;
+    include       ../mime.types;
     default_type  application/octet-stream;
 
     log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
@@ -35,19 +35,19 @@ http {
         server_name  _;
 
         location / {
-            root   /usr/local/openresty/nginx/html;
+            root   /usr/share/nginx/html;
 
             proxy_set_header Host $host;
             proxy_set_header X-Real-IP $remote_addr;
             proxy_redirect off;
 
             if ($uri ~ "/api/holmes-rule-mgmt/(.*)") {
-                proxy_pass https://$host:9101$request_uri;
+                proxy_pass https://msb-iag.onap$request_uri;
                 break;
             }
 
             if ($uri ~ "/api/holmes-engine-mgmt/(.*)") {
-                proxy_pass https://$host:9102$request_uri;
+                proxy_pass https://msb-iag.onap$request_uri;
                 break;
             }
         }
@@ -57,8 +57,8 @@ http {
             root html;
         }
 
-        ssl_certificate /etc/ssl/public/holmes-frontend-selfsigned.crt;
+        ssl_certificate /etc/ssl/certs/holmes-frontend-selfsigned.crt;
         ssl_certificate_key /etc/ssl/private/holmes-frontend.key;
-        ssl_dhparam /etc/ssl/public/dhparam.pem;
+        ssl_dhparam /etc/ssl/certs/dhparam.pem;
     }
 }