Nginx的statua和随机主页配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx的statua和随机主页配置相关的知识,希望对你有一定的参考价值。
**stub_status配置***
nginx的ngx_http_stub_status_module 模块用来展示Nginx客户端的状态
可在server,location中配置
通过stub_status命令配置
范例:我们在Nginx里配置一个虚拟主机,并配置stub_status
server {
listen 8082;
server_name localhost;
root /opt/app/code1;
index index.html;
error_page 404 /404.html;
location /mystatus {
stub_status;
}
}
然后我们通过客户端访问Nginx服务器,结果如下:
响应结果中各项值的意义如下:
Active connections:当前活动的客户端连接数
accepts:已经接受的客户端连接总数量
handled:处理过后的客户端连接总量
requests:客户端的总的请求数量
Readking:正在读取的客户端请求数量
Wrlting:正在向其发送响应报文的连接数量
Walting:等待其发送的空闲连接数量
Nginx随机主页配置
Nginx的random_index_module模块可以在客户端访问Nginx服务时,在目录下随机指定一个页面做为主页面。只能在location中进行配置。
通过random_index 命令进行配置:
配置语法:
random_index on | off ;
范例:
server {
listen 8082;
server_name localhost;
location / {
root /opt/app/code1;
random_index on;
#index index.html;
}
}
配置了random_index on;项后,客户端访问Nginx服务时,显示的主页将会从/opt/app/code目录下随机选取一个做为主页面。(以"."开头的隐藏文件无法被随机选择为主页文件)
以上是关于Nginx的statua和随机主页配置的主要内容,如果未能解决你的问题,请参考以下文章
nginx.conf 忽略了 nginx-ingress 配置映射片段
PHP WordPress条件为主页SlideDeck主题代码片段
Nginx——Nginx启动报错Job for nginx.service failed because the control process exited with error code(代码片段