blob: bf12f872d79c4c4a9b2eb9ef18bf68c8a42891e4 [file] [log] [blame]
RehanRaza38c1f882021-01-19 13:39:59 +01001events{}
2
3http {
4 include /etc/nginx/mime.types;
5
6 upstream backend {
7 server nonrtric-gateway:9090;
8 }
9
10 server {
11 listen 8080;
12 server_name localhost;
13 root /usr/share/nginx/html;
14 index index.html;
Lathish27311662021-02-09 15:06:52 +000015 location /a1-policy/ {
16 proxy_pass http://backend;
17 }
18 location /ei-producer/ {
RehanRaza38c1f882021-01-19 13:39:59 +010019 proxy_pass http://backend;
20 }
RehanRazae838dbd2021-02-02 11:24:34 +010021 location / {
22 try_files $uri $uri/ /index.html;
23 }
RehanRaza38c1f882021-01-19 13:39:59 +010024 }
25}