e7f807f33287d85585497b7a8c94cadef9c06d3c
[it/dep.git] / nonrtric / helm / controlpanel / resources / nginx.conf
1 events{}
2
3 http {
4     include /etc/nginx/mime.types;
5
6     upstream backend {
7         server  nonrtricgateway:9090;
8     }
9
10     server {
11         listen 8080;
12         server_name localhost;
13         root /usr/share/nginx/html;
14         index index.html;
15         location /a1-policy/ {
16             proxy_pass  http://backend;
17         }
18         location /ei-producer/ {
19             proxy_pass  http://backend;
20         }
21         location / {
22             try_files $uri $uri/ /index.html;
23         }
24     }
25 }