-
Notifications
You must be signed in to change notification settings - Fork 2
/
README
158 lines (111 loc) · 4.68 KB
/
README
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
Name
ngx_set_cconv - cconv rewrite set commands
*This module is not distributed with the Nginx source.* See the
installation instructions.
Status
This module is production ready.
Synopsis
location /foo {
set $foo "中國";
set_cconv_to_simp $foo $foo;
# now $foo is 中国
}
location /bar {
set $foo "中国";
set_cconv_to_trad $foo $foo;
# now $foo is 中國
}
location /baz {
set $foo "西zhiMen";
set_pinyin_to_normal $foo $foo;
# now $foo is xizhimen
}
Description
Every directive provided by this module can be
mixed freely with other nginx rewrite module's
directives, like "if" and "set". (Thanks to NDK
and agentzh's set-misc-nginx-module)
Only utf8 is supported in this module.
Directives
set_cconv_to_simp
set_cconv_to_trad
set_pinyin_to_normal
Caveats
Do not use $arg_XXX or $http_XXX or other special variables defined in
the nginx core module as the target variable in this module's directives.
For instance,
set_cconv_to_simp $arg_user 'foo'; # DO NOT USE THIS!
will lead to data corruption.
Installation
First ensure you have openssl installed in your system.
1. Grab the nginx source code from nginx.net (<http://nginx.net/ >), for
example, the version 0.8.29 (see nginx compatibility),
2. Grab the NDK module from GitHub:
http://github.com/simpl-it/ngx_devel_kit
3. and then build the source with this module:
$ wget 'http://sysoev.ru/nginx/nginx-0.8.29.tar.gz'
$ tar -xzvf nginx-0.8.29.tar.gz
$ cd nginx-0.8.29/
# Here we assume you would install you nginx under /opt/nginx/.
$ ./configure --prefix=/opt/nginx \
--with-ld-opt="-lcconv" \
--add-module=/path/to/ngx_devel_kit \
--add-module=/path/to/set-cconv-nginx-module
$ make -j2
$ make install
Download the latest version of the release tarball of this module from
set-cconv-nginx-module file list
(<http://github.com/liseen/set-cconv-nginx-module/downloads >).
Compatibility
The following versions of Nginx should work with this module:
* 0.8.x (last tested version is 0.8.38)
* 0.7.x >= 0.7.46 (last tested version is 0.7.65)
Earlier versions of Nginx like 0.6.x and 0.5.x will *not* work.
If you find that any particular version of Nginx above 0.7.44 does not
work with this module, please consider reporting a bug.
Report Bugs
Although a lot of effort has been put into testing and code tuning,
there must be some serious bugs lurking somewhere in this module. So
whenever you are bitten by any quirks, please don't hesitate to
1. send a bug report or even patches to <[email protected]>,
2. or create a ticket on the issue tracking interface
(<http://github.com/liseen/set-cconv-nginx-module/issues >)
provided by GitHub.
Source Repository
Available on github at liseen/set-cconv-nginx-module
(<http://github.com/liseen/set-cconv-nginx-module >).
ChangeLog
Test Suite
This module comes with a Perl-driven test suite. The test cases
(<http://github.com/liseen/set-cconv-nginx-module/tree/master/test/t/ >)
are declarative
(<http://github.com/liseen/set-cconv-nginx-module/blob/master/test/t/sanity.t >
) too. Thanks to the Test::Base
(<http://search.cpan.org/perldoc?Test::Base >) module in the Perl world.
To run it on your side:
$ cd test
$ PATH=/path/to/your/nginx-with-set-cconv-module:$PATH prove -r t
You need to terminate any Nginx processes before running the test suite
if you have changed the Nginx server binary.
Test::Nginx (<http://search.cpan.org/perldoc?Test::Nginx >) is used by
the test scaffold.
Because a single nginx server (by default, "localhost:1984") is used
across all the test scripts (".t" files), it's meaningless to run the
test suite in parallel by specifying "-jN" when invoking the "prove"
utility.
Some parts of the test suite requires modules rewrite, and echo
to be enabled as well when building Nginx.
TODO
Getting involved
You'll be very welcomed to submit patches to the author or just ask for
a commit bit to the source repository on GitHub.
Author
liseen.wan (万珣新) *<[email protected]>*
agentzh (章亦春) *<[email protected]>*
Copyright & License
Copyright (c) 2010, Qunar Inc. ( http://www.qunar.com).
Copyright (c) 2009, liseen <[email protected]>.
This module is licensed under the terms of the GPL2 license.
See Also
NDK: http://github.com/simpl-it/ngx_devel_kit
set-misc: http://github.com/agentzh/set-misc-nginx-module