Add A1 Policy Type/Policy Types logic from backend
[portal/nonrtric-controlpanel.git] / webapp-frontend / nginx.conf
1 events{}
2
3 http {
4     include /etc/nginx/mime.types;
5
6     upstream backend {
7         # to be replaced with hostname:port of nonrtric-gateway once it gets ready
8         server  nonrtricgateway:8080;
9     }
10
11     server {
12         listen 7070;
13         server_name localhost;
14         root /usr/share/nginx/html;
15         index index.html;
16         location /api/ {
17             proxy_pass  http://backend;
18         }
19     }
20 }