前言
今天在nginx碰到一個(gè)很奇怪的問題,在前端tomcat跳轉(zhuǎn)頁面的時(shí)候跳轉(zhuǎn)的是upstream的地址,直接就報(bào)404,但是有些頁面訪問又是正常的。
http://tomcat/tomcat-web/account/index
如果直接用內(nèi)網(wǎng)ip訪問是正常的,所以可以判定是nginx的問題,nginx配置如下
upstream tomcat {
server 192.168.11.172:8061;
server 192.168.11.172:8062;
ip_hash;
}
server {
listen 8060;
server_name www.example.com;
location / {
proxy_pass http://tomcat;
proxy_set_header Host $host:8060;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
index index.html index.htm;
}
}
經(jīng)過排查發(fā)現(xiàn),因?yàn)樵诤蠖薺ava代碼中,這個(gè)地址是用重定向跳轉(zhuǎn),里面用到request.getServerPort()如果是通過nginx跳轉(zhuǎn)是獲取不到前端正確的端口,默認(rèn)返回的仍然是80,如果nginx的監(jiān)聽的端口默認(rèn)不是80的話,response.sendRedirect 就無法跳轉(zhuǎn)到正確的地址。
response.sendRedirect(getBasePath(request) + "account/index");
private String getBasePath(HttpServletRequest request) {
String path = request.getContextPath();
String basePath = request.getScheme() + "://" + request.getServerName()
+ ":" + request.getServerPort() + path + "/";
return basePath;
}
解決方法是在nginx的配置文件proxy_set_header上加上端口號(hào)
proxy_set_header Host $host:$proxy_port;
以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。