File: README.google_code_home_page.wiki

package info (click to toggle)
libnginx-mod-http-subs-filter 1%3A0.6.4-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 800 kB
  • sloc: perl: 6,644; ansic: 921; sh: 57; makefile: 3
file content (120 lines) | stat: -rw-r--r-- 4,201 bytes parent folder | download | duplicates (10)
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
= nginx_substitutions_filter =

_Note: this module is not distributed with the Nginx source. Installation instructions can be found [#Installation below]._

== Description ==

`nginx_substitutions_filter` is a filter module which can do both regular expression and fixed string substitutions on response bodies. This module is quite different from the Nginx's native Substitution Module. It scans the output chains buffer and matches string line by line, just like Apache's [http://httpd.apache.org/docs/trunk/mod/mod_substitute.html mod_substitute].

== Example ==

{{{
location / {

    subs_filter_types text/html text/css text/xml;
    subs_filter st(\d*).example.com $1.example.com ir;
    subs_filter a.example.com s.example.com;

}
}}}
== Directives ==

 * [#subs_filter_types subs_filter_types]
 * [#subs_filter subs_filter]

=== subs_filter_types ===

`syntax:` _subs_filter_types mime-type `[`mime-types`]` _

`default:` _subs_filter_types text/html_

`context:` _http, server, location_

_subs_filter_types_ is used to specify which content types should be checked for _subs_filter_. The default is only _text/html_.

This module just works with plain text. If the response is compressed, it can't uncompress the response and will ignore this response. This module can be compatible with gzip filter module. But it will not work with proxy compressed response. You can disable the compressed response like this:

proxy_set_header Accept-Encoding "";

=== subs_filter ===

`syntax:` _subs_filter source_str destination_str `[`gior`]` _

`default:` _none_

`context:` _http, server, location_

_subs_filter_ allows replacing source string(regular expression or fixed) in the nginx response with destination string. Substitution text may contain variables. More than one substitution rules per location is supported. The meaning of the third flags are:
 * _g_(default): Replace all the match strings.
 * _i_: Perform a case-insensitive match.
 * _o_: Just replace the first one.
 * _r_: The pattern is treated as a regular expression, default is fixed string.

=== subs_filter_bypass ===

`syntax:` _subs_filter_bypass $variable1 ..._

`default:` _none_

`context:` _http, server, location_

You can sepcify several variables with this directive. If at least one of the variable is not empty and is not equal to '0', this substitution filter will be disabled.

== Installation ==

To install, get the source with subversion:

{{{
git clone git://github.com/yaoweibin/ngx_http_substitutions_filter_module.git
}}}
and then compile nginx with the following option:

{{{
./configure --add-module=/path/to/module
}}}
== Known issue ==
 * Can't substitute the response header.

== CHANGES ==

Changes with nginx_substitutions_filter 0.6.4                                     2014-02-15

 * Now non-200 response will work
 * added the subs_filter_bypass directive

Changes with nginx_substitutions_filter 0.6.2                                     2012-08-26

 * fixed a bug of buffer overlap
 * fixed a bug with last zero buffer

Changes with nginx_substitutions_filter 0.6.0                                     2012-06-30

 * refactor this module

Changes with nginx_substitutions_filter 0.5.2                                     2010-08-11

 * do many optimizing for this module
 * fix a bug of buffer overlap
 * fix a segment fault bug when output chain return NGX_AGAIN.
 * fix a bug about last buffer with no linefeed. This may cause segment fault. Thanks for Josef Fröhle

Changes with nginx_substitutions_filter 0.5                                       2010-04-15

 * refactor the source structure, create branches of dev
 * fix a bug of small chunk of buffers causing lose content
 * fix the bug of last_buf and the nginx's compatibility above 0.8.25
 * fix a bug with unwanted capture config error in fix string substitution
 * add feature of regex captures

Changes with nginx_substitutions_filter 0.4                                       2009-12-23

 * fix many bugs

Changes with nginx_substitutions_filter 0.3                                       2009-02-04

 * Initial public release

== Reporting a bug ==

Questions/patches may be directed to Weibin Yao, yaoweibin@gmail.com.