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