1,首先在http添加以下内容
http{
fastcgi_intercept_errors on;
}
2,server中添加以下内容:
注意路径
error_page 500 502 503 504 = /500.html;
location /500.html {
internal;
}
error_page 404 /404.html;
location /404.html {
internal;
}
这里的404配置只是针对nginx访问自己根目录下文件的配置方法,不适用于proxy_pass。
本文转自crazy_charles 51CTO博客,原文链接:http://blog.51cto.com/douya/1853577,如需转载请自行联系原作者