Nginx 学习笔记
指令记录(Directives)
autoindex (启用目录浏览功能)
配置
location / { autoindex on;}
参考:
http://nginx.org/en/docs/http/ngx_http_autoindex_module.html
stub_status (启用访问 nginx 的状态信息)
配置
location /basic_status { stub_status on;}
输出:
Active connections: 2 server accepts handled requests 8 8 224 Reading: 0 Writing: 1 Waiting: 1
active connections – 活跃的连接数量
server accepts handled requests — 总共处理了n个连接 , 成功创建n次握手, 总共处理了n个请求
reading — 读取客户端的连接数.
writing — 响应数据到客户端的数量
waiting — 开启 keep-alive 的情况下,这个值等于 active – (reading+writing), 意思就是 Nginx 已经处理完正在等候下一次请求指令的驻留连接.
参考:
http://nginx.org/en/docs/http/ngx_http_stub_status_module.html
http://www.ttlsa.com/nginx/nginx-status-detail/