X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=docker-compose%2Fcontrol-panel%2Fconfig%2Fnginx.conf;fp=docker-compose%2Fcontrol-panel%2Fconfig%2Fnginx.conf;h=0000000000000000000000000000000000000000;hb=0e96b9e7209c06f6e3ce090a737f0c504f5a0948;hp=3416fd4ebae7d6db4afceacb3e4f098c05d12249;hpb=cabba8d04f63989224b60cf80538d30717129b20;p=nonrtric.git diff --git a/docker-compose/control-panel/config/nginx.conf b/docker-compose/control-panel/config/nginx.conf deleted file mode 100644 index 3416fd4e..00000000 --- a/docker-compose/control-panel/config/nginx.conf +++ /dev/null @@ -1,27 +0,0 @@ -events{} - -http { - include /etc/nginx/mime.types; - resolver 127.0.0.11; - server { - listen 8080; - server_name localhost; - root /usr/share/nginx/html; - index index.html; - location /a1-policy/ { - set $upstream nonrtric-gateway; - proxy_pass http://$upstream:9090; - } - location /data-producer/{ - set $upstream nonrtric-gateway; - proxy_pass http://$upstream:9090; - } - location /data-consumer/{ - set $upstream nonrtric-gateway; - proxy_pass http://$upstream:9090; - } - location / { - try_files $uri $uri/ /index.html; - } - } -}