找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 12584|回复: 0

可替换多行的nginx反代替换模块

[复制链接]
发表于 2015-10-31 09:41:01 | 显示全部楼层 |阅读模式
比ngx_http_substitutions_filter_module 更强大的替换模块:replace-filter-nginx-module
6 g* M6 N' s* [' _$ L; P这家伙能替换多行文本!
9 A4 ~1 @+ X  B! L: F$ e$ U+ h" E" `4 W7 i  x& Q+ T
下面只翻译一下,再加个安装教程,因为我自己也没弄懂怎样玩= =
6 h# Z2 w# D1 |, S3 A. q4 u1 p# d3 C" ?7 {" n
1.安装此模块需要先安装sregex运行库+ |' j; B7 c: o' ~3 {$ j  T
' M# f) S' l5 D/ E. o& G; u' ~) k
[AppleScript] 纯文本查看 复制代码
apt-get update;apt-get install git make gcc -y  #Centos改成yum
git clone https://github.com/agentzh/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

3 r( s8 b/ v0 _, gnginx.conf的用法举例:
/ o- c2 f& P) r" S4 p: c
[AppleScript] 纯文本查看 复制代码
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 blah' 'ig';
    replace_filter_types text/plain text/css;
}

! {" s& j) O1 F" e: aSyntax语法:
- P6 O. {  b0 R1 ^" A& |" c1 ~
[AppleScript] 纯文本查看 复制代码
^             匹配起始行数
$             匹配末尾行数

\A match only at beginning of stream
\z match only at end of stream

\b match a word boundary
\B match except at a word boundary

. match any char
\C match a single C-language char (octet)

[ab0-9] character classes (positive)
[^ab0-9] character classes (negative)

\d match a digit character ([0-9])
\D match a non-digit character ([^0-9])

\s match a whitespace character ([ \f\n\r\t])
\S match a non-whitespace character ([^ \f\n\r\t])

\h match a horizontal whitespace character
\H match a character that isn't horizontal whitespace

\v match a vertical whitespace character
\V match a character that isn't vertical whitespace

\w match a "word" character ([A-Za-z0-9_])
\W match a non-"word" character ([^A-Za-z0-9_])

\cK control char (example: VT)

\N match a character that isn't a newline

ab concatenation; first match a, and then b
a|b alternation; match a or b

(a) capturing parentheses
(?:a) non-capturing parantheses

a? match 1 or 0 times, greedily
a* match 0 or more times, greedily
a+ match 1 or more times, greedily

a?? match 1 or 0 times, not greedily
a*? match 0 or more times, not greedily
a+? match 1 or more times, not greedily

a{n} match exactly n times
a{n,m} match at least n but not more than m times, greedily
a{n,} match at least n times, greedily

a{n}? match exactly n times, not greedily (redundant)
a{n,m}? match at least n but not more than m times, not greedily
a{n,}? match at least n times, not greedily
+ O: R( J3 R" d% `8 O3 S6 q, y
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|小黑屋|第一站论坛 ( 蜀ICP备06004864号-6 )

GMT+8, 2025-9-18 08:17 , Processed in 0.077299 second(s), 20 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表