Nginx.conf,看起来像这样
user www-data;
worker_processes 4;
pid /run/nginx.pid;
events {
worker_connections 768;
# multi_accept on;
}
命令ulimit -n
给出了可用的工作者连接数,我想要nginx当前使用的数字。
答案 0 :(得分:6)
ngx_http_stub_status_module
模块提供对基本状态信息的访问。
location /basic_status {
stub_status;
}
此配置创建一个简单的网页,其基本状态数据可能如下所示:
Active connections: 291
server accepts handled requests
16630948 16630948 31070465
Reading: 6 Writing: 179 Waiting: 106
来源:https://nginx.org/en/docs/http/ngx_http_stub_status_module.html