summaryrefslogtreecommitdiff
path: root/pod/nginx/ngx_http_referer_module.pod
blob: ce2315bde2697226317a96126b4f4692b196dbf7 (plain)
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
=encoding utf-8

=head1 NAME

ngx_http_referer_module - Module ngx_http_referer_module




=head1



The C<ngx_http_referer_module> module is used to block
access to a site for requests with invalid values in the
C<Referer> header field.
It should be kept in mind that fabricating a request with an appropriate
C<Referer> field value is quite easy, and so the intended
purpose of this module is not to block such requests thoroughly but to block
the mass flow of requests sent by regular browsers.
It should also be taken into consideration that regular browsers may
not send the C<Referer> field even for valid requests.




=head1 Example Configuration




    
    valid_referers none blocked server_names
                   *.example.com example.* www.example.org/galleries/
                   ~\.google\.;
    
    if ($invalid_referer) {
        return 403;
    }






=head1 Directives

=head2 referer_hash_bucket_size


B<syntax:> referer_hash_bucket_size I<I<C<size>>>


B<default:> I<64>


B<context:> I<server>


B<context:> I<location>



This directive appeared in version 1.0.5.





Sets the bucket size for the valid referers hash tables.
The details of setting up hash tables are provided in a separate
L<document|hash>.







=head2 referer_hash_max_size


B<syntax:> referer_hash_max_size I<I<C<size>>>


B<default:> I<2048>


B<context:> I<server>


B<context:> I<location>



This directive appeared in version 1.0.5.





Sets the maximum I<C<size>> of the valid referers hash tables.
The details of setting up hash tables are provided in a separate
L<document|hash>.







=head2 valid_referers


B<syntax:> valid_referers I<
    C<none> E<verbar>
    C<blocked> E<verbar>
    C<server_names> E<verbar>
    I<C<string>>
    ...>



B<context:> I<server>


B<context:> I<location>





Specifies the C<Referer> request header field values
that will cause the embedded C<$invalid_referer> variable to
be set to an empty string.
Otherwise, the variable will be set to “C<1>”.
Search for a match is case-insensitive.





Parameters can be as follows:

=over



=item C<none>




the C<Referer> field is missing in the request header;



=item C<blocked>




the C<Referer> field is present in the request header,
but its value has been deleted by a firewall or proxy server;
such values are strings that do not start with
“C<http:E<sol>E<sol>>” or “C<https:E<sol>E<sol>>”;



=item C<server_names>




the C<Referer> request header field contains
one of the server names;



=item arbitrary string




defines a server name and an optional URI prefix.
A server name can have an “C<*>” at the beginning or end.
During the checking, the server’s port in the C<Referer> field
is ignored;



=item regular expression




the first symbol should be a “C<~>”.
It should be noted that an expression will be matched against
the text starting after the “C<http:E<sol>E<sol>>”
or “C<https:E<sol>E<sol>>”.




=back







Example:

    
    valid_referers none blocked server_names
                   *.example.com example.* www.example.org/galleries/
                   ~\.google\.;









=head1 Embedded Variables




=over



=item C<$invalid_referer>




Empty string, if the C<Referer> request header field
value is considered
valid, otherwise “C<1>”.




=back