Filtering for all producer columns in EIC
[portal/nonrtric-controlpanel.git] / webapp-frontend / nginx.conf
index 8ae7bd8..3da6003 100644 (file)
@@ -4,15 +4,18 @@ http {
     include /etc/nginx/mime.types;
 
     upstream backend {
-        server  nonrtricgateway:9090;
+        server  nonrtric-gateway:9090;
     }
 
     server {
-        listen 7070;
+        listen 8080;
         server_name localhost;
         root /usr/share/nginx/html;
         index index.html;
-        location /v2/ {
+        location /a1-policy/ {
+            proxy_pass  http://backend;
+        }
+        location /ei-producer/ {
             proxy_pass  http://backend;
         }
         location / {