X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=rulemgt-standalone%2Fsrc%2Fmain%2Fassembly%2Fnginx-https.conf;h=dafb571480d1079319d0a89c26ea7a259b0c5f6d;hb=c2a7c78225a54445098d666d72c6e84c21ca70ca;hp=fda1ab1658173a8d0a5ee6b1851eef481abafd3c;hpb=abdc7bfcaf9431fd507f0e9cd7fbdb96413386cd;p=holmes%2Frule-management.git diff --git a/rulemgt-standalone/src/main/assembly/nginx-https.conf b/rulemgt-standalone/src/main/assembly/nginx-https.conf index fda1ab1..dafb571 100644 --- a/rulemgt-standalone/src/main/assembly/nginx-https.conf +++ b/rulemgt-standalone/src/main/assembly/nginx-https.conf @@ -4,6 +4,7 @@ worker_processes 1; error_log logs/error.log; error_log logs/error.log notice; error_log logs/error.log info; +#error_log logs/error.log debug; pid logs/nginx.pid; @@ -14,7 +15,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 +36,19 @@ http { server_name _; location / { - root /usr/local/openresty/nginx/html; + root /usr/share/nginx/html; - proxy_set_header Host $host; + proxy_set_header Host $proxy_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 http://msb-iag.onap$request_uri; break; } if ($uri ~ "/api/holmes-engine-mgmt/(.*)") { - proxy_pass https://$host:9102$request_uri; + proxy_pass http://msb-iag.onap$request_uri; break; } } @@ -57,8 +58,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; } }