美文网首页
nginx使用 -- 模块

nginx使用 -- 模块

作者: top0 | 来源:发表于2018-12-26 16:21 被阅读0次

                                                                                      

    1.sub_filter  : 替换字符串 

    location / {

            root  /opt/app/code/;

            random_index on;

            index  index.html index.htm;

            sub_filter 'aaa' 'bbb';

            sub_filter_once off; //默认是on 只替换第一个  off 替换全部

    }

    2.stub_status : nginx监控

    location /nginxstatus {

    stub_status on;

    }     www.xxx.com/nginxstatus  访问

    3.random_index : 随机选择页面

    location / {

            root /usr/share/nginx/html;

            random_index on;

    }  在html下随机选择一个页面加载

    相关文章

      网友评论

          本文标题:nginx使用 -- 模块

          本文链接:https://www.haomeiwen.com/subject/iwghlqtx.html