From: SANDHYA.JS Date: Fri, 1 Nov 2024 14:32:51 +0000 (+0530) Subject: NG-UI http issue X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=refs%2Fchanges%2F97%2F14697%2F2;p=osm%2FNG-UI.git NG-UI http issue - Has NBI removed https changed https to http in server communication Change-Id: I74155245f7a12f2eb7767395305080430b5326a0 Signed-off-by: SANDHYA.JS --- 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 ""; }