blob: 701d8fafe8b8611bcf3ec8639745ef88766a553c [file] [log] [blame]
events{}
http {
include /etc/nginx/mime.types;
upstream backend {
server nonrtricgateway:9090;
}
server {
listen 7070;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location /a1-policy/v2/ {
proxy_pass http://backend;
}
location / {
try_files $uri $uri/ /index.html;
}
}
}