comparison xml/en/docs/http/ngx_http_limit_req_module.xml @ 288:b33d3f3cd8ca

Removed terminal whitespace.
author Ruslan Ermilov <ru@nginx.com>
date Wed, 28 Dec 2011 07:52:41 +0000
parents 4c6d2c614d2c
children a4fa80755eab
comparison
equal deleted inserted replaced
287:becf9ff52b55 288:b33d3f3cd8ca
100 <context>location</context> 100 <context>location</context>
101 <appeared-in>0.8.18</appeared-in> 101 <appeared-in>0.8.18</appeared-in>
102 102
103 <para> 103 <para>
104 Sets the desired logging level for cases when the server limits 104 Sets the desired logging level for cases when the server limits
105 the number of requests, or delays request processing. 105 the number of requests, or delays request processing.
106 Delays are logged with the level one less than limits; for example, 106 Delays are logged with the level one less than limits; for example,
107 if “<literal>limit_req_log_level notice</literal>” is specified, 107 if “<literal>limit_req_log_level notice</literal>” is specified,
108 delays are logged with the <literal>info</literal> level. 108 delays are logged with the <literal>info</literal> level.
109 </para> 109 </para>
110 110
121 121
122 <para> 122 <para>
123 Sets the parameters for a zone that keeps states for various keys. 123 Sets the parameters for a zone that keeps states for various keys.
124 This state stores the current number of requests in particular. 124 This state stores the current number of requests in particular.
125 The key is the value of the specified variable. 125 The key is the value of the specified variable.
126 Example usage: 126 Example usage:
127 <example> 127 <example>
128 limit_req_zone $binary_remote_addr zone=one:10m rate=1r/s; 128 limit_req_zone $binary_remote_addr zone=one:10m rate=1r/s;
129 </example> 129 </example>
130 </para> 130 </para>
131 131