diff xml/en/docs/http/ngx_http_fastcgi_module.xml @ 1343:1bdde28e359b

Fixed fallouts from the previous change. - Put the fastcgi_limit_rate in the correct order. - Make it clear which connections are meant.
author Ruslan Ermilov <ru@nginx.com>
date Tue, 28 Oct 2014 19:26:23 +0300
parents 758fc0b02651
children da296387cdac
line wrap: on
line diff
--- a/xml/en/docs/http/ngx_http_fastcgi_module.xml
+++ b/xml/en/docs/http/ngx_http_fastcgi_module.xml
@@ -10,7 +10,7 @@
 <module name="Module ngx_http_fastcgi_module"
         link="/en/docs/http/ngx_http_fastcgi_module.html"
         lang="en"
-        rev="20">
+        rev="21">
 
 <section id="summary">
 
@@ -731,29 +731,6 @@ with the <link doc="ngx_http_core_module
 </directive>
 
 
-<directive name="fastcgi_limit_rate">
-<syntax><value>rate</value></syntax>
-<default>0</default>
-<context>http</context>
-<context>server</context>
-<context>location</context>
-<appeared-in>1.7.7</appeared-in>
-
-<para>
-Limits the speed of reading the response from the FastCGI server.
-The <value>rate</value> is specified in bytes per second.
-The zero value disables rate limiting.
-The limit is set per a request, and so if nginx simultaneously opens
-two connections, the overall rate will be twice as much
-as the specified limit.
-The limitation works only if
-<link id="fastcgi_buffering">buffering</link> of responses from the FastCGI
-server is enabled.
-</para>
-
-</directive>
-
-
 <directive name="fastcgi_keep_conn">
 <syntax><literal>on</literal> | <literal>off</literal></syntax>
 <default>off</default>
@@ -775,6 +752,29 @@ connections to FastCGI servers to functi
 </directive>
 
 
+<directive name="fastcgi_limit_rate">
+<syntax><value>rate</value></syntax>
+<default>0</default>
+<context>http</context>
+<context>server</context>
+<context>location</context>
+<appeared-in>1.7.7</appeared-in>
+
+<para>
+Limits the speed of reading the response from the FastCGI server.
+The <value>rate</value> is specified in bytes per second.
+The zero value disables rate limiting.
+The limit is set per a request, and so if nginx simultaneously opens
+two connections to the FastCFI server,
+the overall rate will be twice as much as the specified limit.
+The limitation works only if
+<link id="fastcgi_buffering">buffering</link> of responses from the FastCGI
+server is enabled.
+</para>
+
+</directive>
+
+
 <directive name="fastcgi_max_temp_file_size">
 <syntax><value>size</value></syntax>
 <default>1024m</default>