nginx 常用的中间件

1.--with-http_stub_status_module nginx客户端状态

 

# 打开default.conf文件
vim /etc/nginx/conf.d/default.conf


# 添加 到default.conf 文件中
location /mystatus {
        stub_status;
}


# 检查配置是否正确
nginx -tc /etc/nginx/nginx.conf


# 重载配置文件
nginx -s reload -c /etc/nginx/nginx.conf

2. --with-http_random_index_module 目录中随机选择一个主页 

 

# 打开default.conf文件
vim /etc/nginx/conf.d/default.conf


# 添加 到default.conf 文件中
location /(所有路径) {
        root   /usr/share/nginx/html;    # 首页页面的路径
        random_index on;  (随机选择一个主页)
        # index  index.html index.htm;    # 首页访问的那个页面
    }


# 检查配置是否正确
nginx -tc /etc/nginx/nginx.conf


# 重载配置文件
nginx -s reload -c /etc/nginx/nginx.conf    

3.--with-http_sub_module  http内容替换

 

# 打开default.conf文件
vim /etc/nginx/conf.d/default.conf


# 添加 到default.conf 文件中
location /(所有路径) {
        root   /usr/share/nginx/html;    # 首页页面的路径
        index  index.html index.htm;    # 首页访问的那个页面
        sub_filter '<a>imoce' '<a>ccc';  # <a>imoce替换成<a>ccc
        sub_filter_onece off;  # 全部替换   默认替换第一个
    }


# 检查配置是否正确
nginx -tc /etc/nginx/nginx.conf


# 重载配置文件
nginx -s reload -c /etc/nginx/nginx.conf 

  

  

 

转载于:https://www.cnblogs.com/yoyo1216/p/10918762.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值