diff options
author | GuangrongFu <fu.guangrong@zte.com.cn> | 2021-05-10 09:25:07 +0800 |
---|---|---|
committer | Guangrong Fu <fu.guangrong@zte.com.cn> | 2021-05-10 01:26:54 +0000 |
commit | 6f0d10beffc66f5e44f91538b3cd396cce5f8c84 (patch) | |
tree | 3c147914e79cf916890c7f14915bd55fe3ec4c23 /rulemgt-standalone/src/main/assembly/nginx-http.conf | |
parent | e95f0ec1df32d6b436b29794c367c7cb6ae4b130 (diff) |
bugfix - Failed to create new rules via Holmes GUI
Change-Id: Ied630613f2504b36fe313ff727a636a00546a9f6
Issue-ID: HOLMES-440
Signed-off-by: GuangrongFu <fu.guangrong@zte.com.cn>
Diffstat (limited to 'rulemgt-standalone/src/main/assembly/nginx-http.conf')
-rw-r--r-- | rulemgt-standalone/src/main/assembly/nginx-http.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rulemgt-standalone/src/main/assembly/nginx-http.conf b/rulemgt-standalone/src/main/assembly/nginx-http.conf index 856ad0d..e0c4ff3 100644 --- a/rulemgt-standalone/src/main/assembly/nginx-http.conf +++ b/rulemgt-standalone/src/main/assembly/nginx-http.conf @@ -39,12 +39,12 @@ http { proxy_redirect off; if ($uri ~ "/api/holmes-rule-mgmt/(.*)") { - proxy_pass http://$host:9101$request_uri; + proxy_pass http://msb-iag.onap$request_uri; break; } if ($uri ~ "/api/holmes-engine-mgmt/(.*)") { - proxy_pass http://$host:9102$request_uri; + proxy_pass http://msb-iag.onap$request_uri; break; } } |