Есть ли в nginx try_files ошибка?
У меня есть структура каталогов, как это:
/opt/mysite/www:
F: index.html
D: connect/
F: -- index.html
F: -- page.html
С URL http://www.mysite.io/connect, try_files приводит к 301 для: http://www.mysite.io:8080/connect/
Почему nginx добавляет порт прослушивания?
server {
listen 8080;
server_name www.mysite.io;
index index.htm index.html /index.htm;
root /opt/mysite/www/;
location / {
try_files $uri $uri.html $uri/index.html =404;
}
}