首页 > Web开发 > 详细

比ngx_http_substitutions_filter_module 更强大的替换模块

时间:2015-11-17 23:11:44      阅读:423      评论:0      收藏:0      [点我收藏+]
之前写过nginx反代替换的教程(传送门),使用了ngx_http_substitutions_filter_module模块。不过这货只能替换同一行,具有局限性-_-#

现在一个更强大的替换模块来了……replace-filter-nginx-module

下面只翻译一下,再加个安装教程,因为我自己也没弄懂怎样玩= =

 

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

 
1
2
3
4
5
6
7
8
9
10
11
12
13
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的用法举例:

 
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
}
Syntax语法:

 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
^             匹配起始行数
$             匹配末尾行数
 
\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 isnt horizontal whitespace
 
\v match a vertical whitespace character
\V match a character that isnt 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 isnt 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
 

作者信息:
Yichun “agentzh” Zhang (章亦春) agentzh@gmail.com

 

比ngx_http_substitutions_filter_module 更强大的替换模块

原文:http://www.cnblogs.com/archoncap/p/4973009.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!