comparison xml/en/docs/http/ngx_http_scgi_module.xml @ 1524:323b0d071166

Relocated proxy_read_timeout and friends.
author Yaroslav Zhuravlev <yar@nginx.com>
date Tue, 30 Jun 2015 22:42:38 +0300
parents a55553729d63
children a13a99cf46ea
comparison
equal deleted inserted replaced
1523:3b4a86b3515e 1524:323b0d071166
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="17"> 13 rev="18">
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
1000 </para> 1000 </para>
1001 1001
1002 </directive> 1002 </directive>
1003 1003
1004 1004
1005 <directive name="scgi_pass_request_body">
1006 <syntax><literal>on</literal> | <literal>off</literal></syntax>
1007 <default>on</default>
1008 <context>http</context>
1009 <context>server</context>
1010 <context>location</context>
1011
1012 <para>
1013 Indicates whether the original request body is passed
1014 to the SCGI server.
1015 See also the <link id="scgi_pass_request_headers"/> directive.
1016 </para>
1017
1018 </directive>
1019
1020
1021 <directive name="scgi_pass_request_headers">
1022 <syntax><literal>on</literal> | <literal>off</literal></syntax>
1023 <default>on</default>
1024 <context>http</context>
1025 <context>server</context>
1026 <context>location</context>
1027
1028 <para>
1029 Indicates whether the header fields of the original request are passed
1030 to the SCGI server.
1031 See also the <link id="scgi_pass_request_body"/> directive.
1032 </para>
1033
1034 </directive>
1035
1036
1005 <directive name="scgi_read_timeout"> 1037 <directive name="scgi_read_timeout">
1006 <syntax><value>time</value></syntax> 1038 <syntax><value>time</value></syntax>
1007 <default>60s</default> 1039 <default>60s</default>
1008 <context>http</context> 1040 <context>http</context>
1009 <context>server</context> 1041 <context>server</context>
1013 Defines a timeout for reading a response from the SCGI server. 1045 Defines a timeout for reading a response from the SCGI server.
1014 The timeout is set only between two successive read operations, 1046 The timeout is set only between two successive read operations,
1015 not for the transmission of the whole response. 1047 not for the transmission of the whole response.
1016 If the SCGI server does not transmit anything within this time, 1048 If the SCGI server does not transmit anything within this time,
1017 the connection is closed. 1049 the connection is closed.
1018 </para>
1019
1020 </directive>
1021
1022
1023 <directive name="scgi_pass_request_body">
1024 <syntax><literal>on</literal> | <literal>off</literal></syntax>
1025 <default>on</default>
1026 <context>http</context>
1027 <context>server</context>
1028 <context>location</context>
1029
1030 <para>
1031 Indicates whether the original request body is passed
1032 to the SCGI server.
1033 See also the <link id="scgi_pass_request_headers"/> directive.
1034 </para>
1035
1036 </directive>
1037
1038
1039 <directive name="scgi_pass_request_headers">
1040 <syntax><literal>on</literal> | <literal>off</literal></syntax>
1041 <default>on</default>
1042 <context>http</context>
1043 <context>server</context>
1044 <context>location</context>
1045
1046 <para>
1047 Indicates whether the header fields of the original request are passed
1048 to the SCGI server.
1049 See also the <link id="scgi_pass_request_body"/> directive.
1050 </para> 1050 </para>
1051 1051
1052 </directive> 1052 </directive>
1053 1053
1054 1054