blob: 374910f65d6e9a57be87f8951d0163cf4df1a266 [file] [log] [blame]
events{}
http {
include /etc/nginx/mime.types;
upstream backend {
server nonrtric-gateway:9090;
}
server {
listen 8080;
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;
}
}
}