comparison xml/en/docs/http/ngx_http_scgi_module.xml @ 1342:758fc0b02651

Documented the "proxy_limit_rate" directive and friends.
author Yaroslav Zhuravlev <yar@nginx.com>
date Mon, 06 Oct 2014 14:49:16 +0400
parents 91a064bdb4f9
children 1bdde28e359b
comparison
equal deleted inserted replaced
1341:a4b94d724879 1342:758fc0b02651
8 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd"> 8 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd">
9 9
10 <module name="Module ngx_http_scgi_module" 10 <module name="Module ngx_http_scgi_module"
11 link="/en/docs/http/ngx_http_scgi_module.html" 11 link="/en/docs/http/ngx_http_scgi_module.html"
12 lang="en" 12 lang="en"
13 rev="7"> 13 rev="8">
14 14
15 <section id="summary"> 15 <section id="summary">
16 16
17 <para> 17 <para>
18 The <literal>ngx_http_scgi_module</literal> module allows passing 18 The <literal>ngx_http_scgi_module</literal> module allows passing
669 </para> 669 </para>
670 670
671 </directive> 671 </directive>
672 672
673 673
674 <directive name="scgi_limit_rate">
675 <syntax><value>rate</value></syntax>
676 <default>0</default>
677 <context>http</context>
678 <context>server</context>
679 <context>location</context>
680 <appeared-in>1.7.7</appeared-in>
681
682 <para>
683 Limits the speed of reading the response from the SCGI server.
684 The <value>rate</value> is specified in bytes per second.
685 The zero value disables rate limiting.
686 The limit is set per a request, and so if nginx simultaneously opens
687 two connections, the overall rate will be twice as much
688 as the specified limit.
689 The limitation works only if
690 <link id="scgi_buffering">buffering</link> of responses from the SCGI
691 server is enabled.
692 </para>
693
694 </directive>
695
696
674 <directive name="scgi_max_temp_file_size"> 697 <directive name="scgi_max_temp_file_size">
675 <syntax><value>size</value></syntax> 698 <syntax><value>size</value></syntax>
676 <default>1024m</default> 699 <default>1024m</default>
677 <context>http</context> 700 <context>http</context>
678 <context>server</context> 701 <context>server</context>