Code Review
/
nonrtric.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
81102eb82ea026557504230a328d120a49c4edad
[nonrtric.git]
/
docker-compose
/
control-panel
/
config
/
nginx.conf
1
events{}
2
3
http {
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;
15
location /api/ {
16
proxy_pass http://backend;
17
}
18
}
19
}