nginx做反向代理tomcat,当url连接不存在时,nginx返回404
方法:
在nginx配置文件nginx.conf中加入配置:

proxy_intercept_errors on;

proxy_intercept_errors 用法:

模块:http,server,location
用法:proxy_intercept_errors on|off;
默认值:proxy_intercept_errors off;

当后端服务器的响应错误状态码时,决定是否直接将响应发送给客户端,亦或将响应转发给nginx由error_page指令来处理。

标签: nginx, 反向代理

添加新评论