author:咔咔
使用/usr/local/nginx/sbin/nginx -V查看nginx自定义安装的模块
模块一:--with-http_sub_status_mosule
作用:nginx的客户端状态
// 配置语法
server {
listen 8080;
access_log off;
server_name localhost;
root /var/www/html;
location /nginx_status {
stub_status on;
access_log off;
allow 223.xxx.xxx.xxx;
allow 139.59.253.208;
deny all;
}
}
测试
模块二: random_index
作用:目录中随机显示一个主页
配置语法:
案例:
比如说我们的home/www下面有index1,index2,index3,他会随机的显示这几个文件
// 配置语法
server {
listen 8080;
access_log off;
server_name localhost;
location /{
root /home/www;
random_index on;
}
}
模块三:sub_module
作用:替换http头内容
语法:
sub_filter是将内容替换
sub_filter_once off 是将http请求里边的所有关于imooc都改为大写