Clean-up existing docker-compose solutions
[oam.git] / solution / integration / smo / non-rt-ric / config / control-panel / nginx.conf
diff --git a/solution/integration/smo/non-rt-ric/config/control-panel/nginx.conf b/solution/integration/smo/non-rt-ric/config/control-panel/nginx.conf
deleted file mode 100644 (file)
index 3416fd4..0000000
+++ /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;
-        }
-    }
-}