summaryrefslogtreecommitdiffstats
path: root/rulemgt-standalone/src/main/assembly/nginx-https.conf
diff options
context:
space:
mode:
authorGuangrongFu <fu.guangrong@zte.com.cn>2021-05-17 18:56:05 +0800
committerGuangrongFu <fu.guangrong@zte.com.cn>2021-05-17 19:30:39 +0800
commitc2a7c78225a54445098d666d72c6e84c21ca70ca (patch)
tree2855c81dbd6d3d0e1b787397b3558d9a13fab6e8 /rulemgt-standalone/src/main/assembly/nginx-https.conf
parent6f0d10beffc66f5e44f91538b3cd396cce5f8c84 (diff)
bugfix - rule creation failure on GUI
Issue-ID: HOLMES-440 Change-Id: I3ba937d992b054149d1c5cc072b5920935923ec5 Signed-off-by: GuangrongFu <fu.guangrong@zte.com.cn>
Diffstat (limited to 'rulemgt-standalone/src/main/assembly/nginx-https.conf')
-rw-r--r--rulemgt-standalone/src/main/assembly/nginx-https.conf7
1 files changed, 4 insertions, 3 deletions
diff --git a/rulemgt-standalone/src/main/assembly/nginx-https.conf b/rulemgt-standalone/src/main/assembly/nginx-https.conf
index c89c0bd..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;
@@ -37,17 +38,17 @@ http {
location / {
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://msb-iag.onap$request_uri;
+ proxy_pass http://msb-iag.onap$request_uri;
break;
}
if ($uri ~ "/api/holmes-engine-mgmt/(.*)") {
- proxy_pass https://msb-iag.onap$request_uri;
+ proxy_pass http://msb-iag.onap$request_uri;
break;
}
}