summaryrefslogtreecommitdiffstats
path: root/rulemgt-standalone/src/main/assembly/nginx.conf
diff options
context:
space:
mode:
authorGuangrongFu <fu.guangrong@zte.com.cn>2018-11-06 19:18:07 +0800
committerGuangrongFu <fu.guangrong@zte.com.cn>2018-11-06 19:18:07 +0800
commit53e45682d0fc4de09ab09a98fa44c5db5155cb4b (patch)
treebbdfcb24e9ec4b60d84131f00e3b3d95a93228aa /rulemgt-standalone/src/main/assembly/nginx.conf
parentad9283683ea53285d45d7f421ba277914c218edb (diff)
Updated the UI to HTTPS
Change-Id: I6964b5d175dd7cca308f4848e865477b43df8f20 Issue-ID: HOLMES-181 Signed-off-by: GuangrongFu <fu.guangrong@zte.com.cn>
Diffstat (limited to 'rulemgt-standalone/src/main/assembly/nginx.conf')
-rw-r--r--rulemgt-standalone/src/main/assembly/nginx.conf24
1 files changed, 16 insertions, 8 deletions
diff --git a/rulemgt-standalone/src/main/assembly/nginx.conf b/rulemgt-standalone/src/main/assembly/nginx.conf
index a41168a..e4facf1 100644
--- a/rulemgt-standalone/src/main/assembly/nginx.conf
+++ b/rulemgt-standalone/src/main/assembly/nginx.conf
@@ -31,17 +31,25 @@ http {
ssl_session_timeout 10m;
server {
- listen 9104;
- server_name localhost;
- return 302 https://$server_name$request_uri;
- }
-
- server {
- listen 9105 ssl;
- server_name localhost;
+ listen 9104 ssl;
+ server_name _;
location / {
root /usr/local/openresty/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;
+ break;
+ }
+
+ if ($uri ~ "/api/holmes-engine-mgmt/(.*)") {
+ proxy_pass https://$host:9102$request_uri;
+ break;
+ }
}
location ~*.(htm|html){