打开http_stub_status_module模块之后,还需要修改 Nginx 配置文件,在默认主机里面加上 location 或者你希望能访问到的主机里面加上如下配置: 代码语言:javascript 复制 location/status{stub_status on;access_log off;allow127.0.0.1;deny all;#auth_basic"NginxStatus";#auth_basic_user_file conf/nginxstaus;} ...
#Nginx运行状态,StubStatus模块获取Nginx自启动的工作状态(编译时要开启对应功能)#location /NginxStatus {# #启用StubStatus的工作访问状态# stub_status on;# #指定StubStaus模块的访问日志文件# access_log logs/Nginxstatus.log;# #Nginx认证机制(需Apache的htpasswd命令生成)# #auth_basic "NginxStatus";# #用...
location /status{stub_status on;allow172.16.61.4;#我们只将该页面限制在本地ip地址可以访问deny all;} 1. 2. 3. 4. 5. **ngx_http_auth_basic_module模块的配置(basic认证)** auth_basic string|off;使用http basic认证协议对用户进行认证; auth_basic_user_file file;实现用户的账帐号文件; [root@no...
location= /basic_status { stub_status; } This configuration creates a simple web page with basic status data which may look like as follows: Active connections:291 server accepts handled requests 166309481663094831070465 Reading:6 Writing:179 Waiting:106 访问控制 #限制IP location /status { stu...
location/status{stub_status on;# 表示开启stubStatus的工作状态统计功能。 access_log off;# access_log off;关闭access_log 日志记录功能。 #auth_basic"status";# auth_basic 是nginx的一种认证机制。 #auth_basic_user_file conf/htpasswd;# 用来指定密码文件的位置。} ...
ngx_http_stub_status_module模块提供对基本状态信息的访问。 语法: Syntax:stub_status;Default:— Context:server,location 示例: location /basic_status { stub_status; } 结果: This configuration creates a simple web pagewithbasic status data which may look likeasfollows:Active connections:291server acce...
## Nginx status URL. ## (Default) If not use with VTS, the formula is like this: "http://localhost/basic_status". ## If using with VTS, the formula is like this: "http://localhost/status/format/json". url = "http://localhost/status/format/json" ...
location /status { stub_status on; #表示开启stubStatus的工作状态统计功能。 access_log off; #access_log off; 关闭access_log 日志记录功能。 #auth_basic "status"; #auth_basic 是nginx的一种认证机制。 #auth_basic_user_file conf/htpasswd; #用来指定密码文件的位置。
location /hxbcdnstatus { stub_status on; access_log off; allow 127.0.0.1; deny all; #auth_basic "NginxStatus"; #auth_basic_user_file conf/nginxstaus; } 此处默认只有本地访问,如果远程可以查看需要加相关的IP或者干脆去掉Deny all即可。加密文件可以使用#htpasswd -c /usr/nginx/conf hxb 命令来创...
location /nginx_status { stub_status; auth_basic "auth login"; auth_basic_user_file /apps/nginx/conf/.htpasswd; allow 192.168.0.0/16; allow 127.0.0.1; deny all; } #状态页用于输出nginx的基本状态信息: #输出信息示例: Active connections: 291 ...