nginx反向代理设置自定义错误页面

时间:2023-03-09 00:22:17
nginx反向代理设置自定义错误页面

为nginx反向代理设置自定义错误页面

转:https://blog.****.net/u014433030/article/details/77507839

如果我们的nginx配置了反向代理,如下:

 location ^~ /wyq/ {
proxy_pass https://127.0.0.1:$wyq_port;
proxy_redirect https://127.0.0.1:$wyq_port/ /;
#proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto https;

即,URL中匹配到wyq时,代理到本地端口$wyq_port的服务去,

现在假设$wyq_port的服务没有启动,我们浏览器请求时会返回 internal server error的错误,

如果我们想自定义错误页面,改为如下配置即可:

 location ^~ /wyq/ {
proxy_pass https://127.0.0.1:$wyq_port;
proxy_redirect https://127.0.0.1:$wyq_port/ /;
#proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto https;
proxy_intercept_errors on;
error_page = /error_500.html;

location = /error_500.html{
root /var/web;
}