From d823fa1ed820b65d317d382459787b095731234f Mon Sep 17 00:00:00 2001 From: "SANDHYA.JS" Date: Fri, 1 Nov 2024 20:02:51 +0530 Subject: [PATCH] NG-UI http issue - Has NBI removed https changed https to http in server communication Change-Id: I74155245f7a12f2eb7767395305080430b5326a0 Signed-off-by: SANDHYA.JS --- nginx/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 1d3f29d..115bd82 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -23,7 +23,7 @@ server { client_max_body_size 50M; location /osm { - proxy_pass https://nbi:9999; + proxy_pass http://nbi:9999; proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504; proxy_set_header Accept-Encoding ""; } -- 2.25.1