14 lines
417 B
Plaintext
14 lines
417 B
Plaintext
|
|
# /etc/nginx/sites-available/efir_org additions for Montana explorer
|
||
|
|
location = /montana { return 301 /montana/; }
|
||
|
|
location /montana/ {
|
||
|
|
alias /var/www/efir_org/montana/;
|
||
|
|
try_files $uri $uri/ /montana/index.html;
|
||
|
|
}
|
||
|
|
location /montana-api/ {
|
||
|
|
proxy_pass http://149.154.184.205:5010/api/;
|
||
|
|
proxy_http_version 1.1;
|
||
|
|
proxy_set_header Host $host;
|
||
|
|
proxy_read_timeout 10s;
|
||
|
|
proxy_connect_timeout 5s;
|
||
|
|
}
|