- 前言
今天在 nginx 碰到一个很奇怪的问题,在前端 tomcat 跳转页面的时候跳转的是 upstream 的地址,直接就报 404,但是有些页面访问又是正常的。
http://tomcat/tomcat-web/account/index
如果直接用内网 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;
}
}
经过排查发现,因为在后端 java
代码中,这个地址是用重定向跳转,里面用到 request.getServerPort()
如果是通过 nginx 跳转是获取不到前端正确的端口, 默认返回的仍然是 80,如果 nginx 的监听的端口默认不是 80 的话,response.sendRedirect 就无法跳转到正确的地址。
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
上加上端口号
proxy_set_header Host $host:$proxy_port;