码迷,mamicode.com
首页 > 其他好文 > 详细

Nginx替换过滤文本模块replace-filter-nginx-module

时间:2017-06-28 20:29:19      阅读:665      评论:0      收藏:0      [点我收藏+]

标签:ace   upd   text   sel   span   one   clone   其他   proxy   

1.安装此模块需要先安装sregex运行库

apt-get update;
apt-get install git make gcc -y
#Centos改成yum git clone https://github.com/agentzh/sregex cd sregex make make install cd .. git clone https://github.com/agentzh/replace-filter-nginx-module wget http://nginx.org/download/nginx-1.2.6.tar.gz tar zxvf nginx-1.2.6.tar.gz cd nginx-1.2.6 ./configure --add-module=../replace-filter-nginx-module #自行加其他编译参数 make make install nginx.conf的用法举例: location /t { default_type text/html; echo abc; replace_filter ab|abc X; } location / { # proxy_pass/fastcgi_pass/... # caseless global substitution: replace_filter \d+blah blahig; replace_filter_types text/plain text/css; }

Nginx替换过滤文本模块replace-filter-nginx-module

标签:ace   upd   text   sel   span   one   clone   其他   proxy   

原文地址:http://www.cnblogs.com/crxis/p/7091174.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!