X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=docker-compose%2Fcontrol-panel%2Fconfig%2Fnginx.conf;h=2414bde0c62116df14e044b6bb586459e9ceaad3;hb=e30ba6aaa79d40803de0e7ada2920f2b22e0b3bc;hp=bf12f872d79c4c4a9b2eb9ef18bf68c8a42891e4;hpb=273116634a3955a631dddb4454ecaf312a46c804;p=nonrtric.git diff --git a/docker-compose/control-panel/config/nginx.conf b/docker-compose/control-panel/config/nginx.conf index bf12f872..2414bde0 100644 --- a/docker-compose/control-panel/config/nginx.conf +++ b/docker-compose/control-panel/config/nginx.conf @@ -2,21 +2,19 @@ events{} http { include /etc/nginx/mime.types; - - upstream backend { - server nonrtric-gateway:9090; - } - + resolver 127.0.0.11; server { listen 8080; server_name localhost; root /usr/share/nginx/html; index index.html; location /a1-policy/ { - proxy_pass http://backend; + set $upstream nonrtric-gateway; + proxy_pass http://$upstream:9090; } - location /ei-producer/ { - proxy_pass http://backend; + location /ei-producer/{ + set $upstream nonrtric-gateway; + proxy_pass http://$upstream:9090; } location / { try_files $uri $uri/ /index.html;