=encoding utf-8 =head1 NAME ngx_http_referer_module - Module ngx_http_referer_module =head1 The C module is used to block access to a site for requests with invalid values in the C header field. It should be kept in mind that fabricating a request with an appropriate C 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 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 referer_hash_bucket_size I>> B I<64> B I B I 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. =head2 referer_hash_max_size B referer_hash_max_size I>> B I<2048> B I B I This directive appeared in version 1.0.5. Sets the maximum I> of the valid referers hash tables. The details of setting up hash tables are provided in a separate L. =head2 valid_referers B valid_referers I< C E C E C E I> ...> B I B I Specifies the C 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 the C field is missing in the request header; =item C the C 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 “CE>” or “CE>”; =item C the C 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 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 “CE>” or “CE>”. =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 request header field value is considered valid, otherwise “C<1>”. =back