nginx的软件功能模块中:ngx_http_sub_status_module,该模块主要功能是记录Nginx的基本访问状态信息,可以了解nginx 的工作状态,例如:连接数等。要想使用状态模块,则编译Nginx时需要增加http_stub_status_module支持。
- 官方文档地址
http://nginx.org/en/docs/http/ngx_http_stub_status_module.html
-
查看是否编译添加
/application/nginx/sbin/nginx -V
-
配置
sever虚拟主机中添加location /status { stub_status on; //状态打开 access_log off; 不添加access log日志 allow 192.168.47.1; //只允许192.168.47.1查看 deny all; //拒绝所有的IP地址 }
通过http://192.168.47.110/status 可查看