X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=webapp-frontend%2Fnginx.conf;h=3416fd4ebae7d6db4afceacb3e4f098c05d12249;hb=refs%2Fchanges%2F20%2F6420%2F1;hp=2414bde0c62116df14e044b6bb586459e9ceaad3;hpb=b4bb55e832f97270e71f1afc8321aa2899b55b5d;p=portal%2Fnonrtric-controlpanel.git diff --git a/webapp-frontend/nginx.conf b/webapp-frontend/nginx.conf index 2414bde..3416fd4 100644 --- a/webapp-frontend/nginx.conf +++ b/webapp-frontend/nginx.conf @@ -12,7 +12,11 @@ http { set $upstream nonrtric-gateway; proxy_pass http://$upstream:9090; } - location /ei-producer/{ + location /data-producer/{ + set $upstream nonrtric-gateway; + proxy_pass http://$upstream:9090; + } + location /data-consumer/{ set $upstream nonrtric-gateway; proxy_pass http://$upstream:9090; } @@ -20,4 +24,4 @@ http { try_files $uri $uri/ /index.html; } } -} \ No newline at end of file +}