18 lines
252 B
Plaintext
18 lines
252 B
Plaintext
server {
|
|
listen 80;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
|
|
location /history {
|
|
proxy_pass http://backend:5000;
|
|
}
|
|
|
|
location /save {
|
|
proxy_pass http://backend:5000;
|
|
}
|
|
}
|