X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=docker-compose%2Fcontrol-panel%2Fconfig%2Fnginx.conf;h=3416fd4ebae7d6db4afceacb3e4f098c05d12249;hb=refs%2Fheads%2Fdawn;hp=2414bde0c62116df14e044b6bb586459e9ceaad3;hpb=1aa2b7f51392e7f97334315e443e4d08e08873a6;p=portal%2Fnonrtric-controlpanel.git diff --git a/docker-compose/control-panel/config/nginx.conf b/docker-compose/control-panel/config/nginx.conf index 2414bde..3416fd4 100644 --- a/docker-compose/control-panel/config/nginx.conf +++ b/docker-compose/control-panel/config/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 +}