Вот услуга http://example.com
на основе службы порта 4000, я могу посетить http://example.com/index.html
сейчас. Когда я приезжаю http://example.com
, Я хочу его посетить index.html
слишком. Вот мои настройки nginx:
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
server {
listen 80;
server_name example.com ;
location / {
root /wwwroot/product/example.com/programs/web.broswer/app;
index index.html;
proxy_pass http://localhost:4000; # 映射到本地端口
#proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
# 配置支持websocket
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
}
}
Теперь путь /
это не ресурсы index.html
.
В index
директива не будет работать с proxy_pass
расположение. Однако вы можете явно отобразить /
к /index.html
с точным совпадением местоположения, используя:
location = / { rewrite ^ /index.html; }
для выполнения внутреннего перенаправления или:
location = / { return 301 /index.html; }
для выполнения внешнего перенаправления.