仿照http://renxiangzyq.iteye.com/... 這篇文章添加了 http_stub_status_module模組並在nginx.conf中添加了此模組的配置信息,如下所示。
server{
listen 80;
server_name xxxxx.com;
limit_conn perserver 100;
location /{
root z.com;
index index.html;
}
location /NginxStatus {
stub_status on;
access_log /home/lily/nginx/logs/zcom_status.log;
auth_basic "NginxStatus";
}
}
xxxxx.com能夠正常訪問,當訪問xxxxx.com/NginxStatus時,報404錯誤,求原因。
高洛峰2017-05-16 17:16:30
ok,找到解決方案了:不用調換location程式碼區塊的位置,只是kill掉nginx進程重啟一次,再訪問xxxxx.com/NginxStatus頁面時,就不報404錯誤了。新手就容易犯這種低級錯誤哎。