Consumer service
[portal/nonrtric-controlpanel.git] / docker-compose / control-panel / config / nginx.conf
index 2414bde..3416fd4 100644 (file)
@@ -12,7 +12,11 @@ http {
             set $upstream nonrtric-gateway;
             proxy_pass http://$upstream:9090;
         }
-        location /ei-producer/{
+        location /data-producer/{
+            set $upstream nonrtric-gateway;
+            proxy_pass http://$upstream:9090;
+        }
+        location /data-consumer/{
             set $upstream nonrtric-gateway;
             proxy_pass http://$upstream:9090;
         }
@@ -20,4 +24,4 @@ http {
             try_files $uri $uri/ /index.html;
         }
     }
-}
\ No newline at end of file
+}