comparison xml/en/docs/http/ngx_http_fastcgi_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 657885fd2b96
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_fastcgi_module" 10 <module name="Module ngx_http_fastcgi_module"
11 link="/en/docs/http/ngx_http_fastcgi_module.html" 11 link="/en/docs/http/ngx_http_fastcgi_module.html"
12 lang="en" 12 lang="en"
13 rev="28"> 13 rev="29">
14 14
15 <section id="summary"> 15 <section id="summary">
16 16
17 <para> 17 <para>
18 The <literal>ngx_http_fastcgi_module</literal> module allows passing 18 The <literal>ngx_http_fastcgi_module</literal> module allows passing
1100 </para> 1100 </para>
1101 1101
1102 </directive> 1102 </directive>
1103 1103
1104 1104
1105 <directive name="fastcgi_pass_request_body">
1106 <syntax><literal>on</literal> | <literal>off</literal></syntax>
1107 <default>on</default>
1108 <context>http</context>
1109 <context>server</context>
1110 <context>location</context>
1111
1112 <para>
1113 Indicates whether the original request body is passed
1114 to the FastCGI server.
1115 See also the <link id="fastcgi_pass_request_headers"/> directive.
1116 </para>
1117
1118 </directive>
1119
1120
1121 <directive name="fastcgi_pass_request_headers">
1122 <syntax><literal>on</literal> | <literal>off</literal></syntax>
1123 <default>on</default>
1124 <context>http</context>
1125 <context>server</context>
1126 <context>location</context>
1127
1128 <para>
1129 Indicates whether the header fields of the original request are passed
1130 to the FastCGI server.
1131 See also the <link id="fastcgi_pass_request_body"/> directive.
1132 </para>
1133
1134 </directive>
1135
1136
1105 <directive name="fastcgi_read_timeout"> 1137 <directive name="fastcgi_read_timeout">
1106 <syntax><value>time</value></syntax> 1138 <syntax><value>time</value></syntax>
1107 <default>60s</default> 1139 <default>60s</default>
1108 <context>http</context> 1140 <context>http</context>
1109 <context>server</context> 1141 <context>server</context>
1113 Defines a timeout for reading a response from the FastCGI server. 1145 Defines a timeout for reading a response from the FastCGI server.
1114 The timeout is set only between two successive read operations, 1146 The timeout is set only between two successive read operations,
1115 not for the transmission of the whole response. 1147 not for the transmission of the whole response.
1116 If the FastCGI server does not transmit anything within this time, 1148 If the FastCGI server does not transmit anything within this time,
1117 the connection is closed. 1149 the connection is closed.
1118 </para>
1119
1120 </directive>
1121
1122
1123 <directive name="fastcgi_pass_request_body">
1124 <syntax><literal>on</literal> | <literal>off</literal></syntax>
1125 <default>on</default>
1126 <context>http</context>
1127 <context>server</context>
1128 <context>location</context>
1129
1130 <para>
1131 Indicates whether the original request body is passed
1132 to the FastCGI server.
1133 See also the <link id="fastcgi_pass_request_headers"/> directive.
1134 </para>
1135
1136 </directive>
1137
1138
1139 <directive name="fastcgi_pass_request_headers">
1140 <syntax><literal>on</literal> | <literal>off</literal></syntax>
1141 <default>on</default>
1142 <context>http</context>
1143 <context>server</context>
1144 <context>location</context>
1145
1146 <para>
1147 Indicates whether the header fields of the original request are passed
1148 to the FastCGI server.
1149 See also the <link id="fastcgi_pass_request_body"/> directive.
1150 </para> 1150 </para>
1151 1151
1152 </directive> 1152 </directive>
1153 1153
1154 1154