我如何确保django中的nginx正常工作?

时间:2013-10-07 15:06:08

标签: django error-handling nginx http-status-code-404

我在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中工作吗?

0 个答案:

没有答案