我在 django 中使用 nginx,我想包含自定义 HTTP 错误处理程序(如 handler404,500..)。所以我想确保 nginx 正在工作并且我的客户错误处理程序正在工作。我想要一种方法来检查它。我的 nginx conf 文件中该客户错误页面的代码如下所示:
error_page 404 /404.html;
location = /404.html {
root html;
internal;
}
error_page 403 /403.html;
location = /403.html {
root html;
allow all;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
allow all;
}
有人想确保我的 nginx 在 localhost 中工作吗?