我正在尝试触发 nginx 错误来测试我的错误页面。这是我尝试过的:
server {
// ...
root /path/to/site
error_page 504 502 500 = /html/error/500.html; # absolute path: /path/to/site/html/error/500.html
return 500;
}
但我不断收到默认的 nginx 错误。测试 html 是不够的,我想确保 nginx 会显示正确的错误页面。
有任何想法吗?