RehanRaza | f9523c1 | 2021-01-08 17:54:16 +0100 | [diff] [blame] | 1 | events{} |
| 2 | |
| 3 | http { |
| 4 | include /etc/nginx/mime.types; |
| 5 | |
| 6 | upstream backend { |
Lathish | 7443264 | 2021-01-26 14:23:10 +0000 | [diff] [blame] | 7 | server nonrtricgateway:9090; |
RehanRaza | f9523c1 | 2021-01-08 17:54:16 +0100 | [diff] [blame] | 8 | } |
| 9 | |
| 10 | server { |
| 11 | listen 7070; |
| 12 | server_name localhost; |
| 13 | root /usr/share/nginx/html; |
| 14 | index index.html; |
elinuxhenrik | e8ca795 | 2021-02-08 09:15:40 +0100 | [diff] [blame^] | 15 | location /a1-policy/ { |
| 16 | proxy_pass http://backend; |
| 17 | } |
| 18 | location /ei-producer/ { |
RehanRaza | f9523c1 | 2021-01-08 17:54:16 +0100 | [diff] [blame] | 19 | proxy_pass http://backend; |
| 20 | } |
Lathish | 7443264 | 2021-01-26 14:23:10 +0000 | [diff] [blame] | 21 | location / { |
| 22 | try_files $uri $uri/ /index.html; |
| 23 | } |
RehanRaza | f9523c1 | 2021-01-08 17:54:16 +0100 | [diff] [blame] | 24 | } |
| 25 | } |