blob: 164875c1aae26577b61e3f1fbe23783245501d62 [file] [log] [blame]
RehanRazaf9523c12021-01-08 17:54:16 +01001events{}
2
3http {
4 include /etc/nginx/mime.types;
5
6 upstream backend {
Lathish74432642021-01-26 14:23:10 +00007 server nonrtricgateway:9090;
RehanRazaf9523c12021-01-08 17:54:16 +01008 }
9
10 server {
11 listen 7070;
12 server_name localhost;
13 root /usr/share/nginx/html;
14 index index.html;
elinuxhenrike8ca7952021-02-08 09:15:40 +010015 location /a1-policy/ {
16 proxy_pass http://backend;
17 }
18 location /ei-producer/ {
RehanRazaf9523c12021-01-08 17:54:16 +010019 proxy_pass http://backend;
20 }
Lathish74432642021-01-26 14:23:10 +000021 location / {
22 try_files $uri $uri/ /index.html;
23 }
RehanRazaf9523c12021-01-08 17:54:16 +010024 }
25}