使用http_stub_status_module
在编译安装nginx的时候可以加上--with-http_stub_status_module,如果已经安装好nginx可以参考nginx安装完成后增加模块的博文,
在nginx.conf的server块中添加如下代码
location /status {
# Turn on nginxstats
stub_status on;
# I do not needlogs for stats
access_log off;
# Security:Only allow access from 192.168.1.100 IP #
#allow192.168.1.100;
# Send rest ofthe world to /dev/null #
#deny all;
}
重启nginx即可通过ip:端口/status就可以查看到了类似下面的页面
Active connections: 3 server accepts handled requests 10 10 137 Reading: 0 Writing: 1 Waiting: 2
转载于:https://blog.51cto.com/zhaol/1736530