Step versions on master after release
[nonrtric.git] / docker-compose / control-panel / config / nginx.conf
diff --git a/docker-compose/control-panel/config/nginx.conf b/docker-compose/control-panel/config/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;
-        }
-    }
-}