Add path for EI Consumer
[nonrtric.git] / docker-compose / control-panel / config / nginx.conf
index 916caef..3416fd4 100644 (file)
@@ -16,8 +16,12 @@ http {
             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;
         }
     }
-}
\ No newline at end of file
+}