comparison xml/en/docs/http/ngx_http_fastcgi_module.xml @ 1149:1501e5848052

Corrected the usage of the definite article.
author Yaroslav Zhuravlev <yar@nginx.com>
date Tue, 08 Apr 2014 20:13:53 +0400
parents d37892ad69ab
children 4c2324a7eeea
comparison
equal deleted inserted replaced
1148:2b9dc2c5e129 1149:1501e5848052
960 <context>server</context> 960 <context>server</context>
961 <context>location</context> 961 <context>location</context>
962 962
963 <para> 963 <para>
964 Defines a timeout for reading a response from the FastCGI server. 964 Defines a timeout for reading a response from the FastCGI server.
965 A timeout is set only between two successive read operations, 965 The timeout is set only between two successive read operations,
966 not for the transmission of the whole response. 966 not for the transmission of the whole response.
967 If a FastCGI server does not transmit anything within this time, 967 If the FastCGI server does not transmit anything within this time,
968 a connection is closed. 968 the connection is closed.
969 </para> 969 </para>
970 970
971 </directive> 971 </directive>
972 972
973 973
1034 <context>server</context> 1034 <context>server</context>
1035 <context>location</context> 1035 <context>location</context>
1036 1036
1037 <para> 1037 <para>
1038 Sets a timeout for transmitting a request to the FastCGI server. 1038 Sets a timeout for transmitting a request to the FastCGI server.
1039 A timeout is set only between two successive write operations, 1039 The timeout is set only between two successive write operations,
1040 not for the transmission of the whole request. 1040 not for the transmission of the whole request.
1041 If a FastCGI server does not receive anything within this time, 1041 If the FastCGI server does not receive anything within this time,
1042 a connection is closed. 1042 the connection is closed.
1043 </para> 1043 </para>
1044 1044
1045 </directive> 1045 </directive>
1046 1046
1047 1047
1051 <context>location</context> 1051 <context>location</context>
1052 1052
1053 <para> 1053 <para>
1054 Defines a regular expression that captures a value for the 1054 Defines a regular expression that captures a value for the
1055 <var>$fastcgi_path_info</var> variable. 1055 <var>$fastcgi_path_info</var> variable.
1056 A regular expression should have two captures: the first becomes 1056 The regular expression should have two captures: the first becomes
1057 a value of the <var>$fastcgi_script_name</var> variable, the second 1057 a value of the <var>$fastcgi_script_name</var> variable, the second
1058 becomes a value of the <var>$fastcgi_path_info</var> variable. 1058 becomes a value of the <var>$fastcgi_path_info</var> variable.
1059 For example, with these settings 1059 For example, with these settings
1060 <example> 1060 <example>
1061 location ~ ^(.+\.php)(.*)$ { 1061 location ~ ^(.+\.php)(.*)$ {
1098 </para> 1098 </para>
1099 1099
1100 <para> 1100 <para>
1101 The modification time of files is set according to the received 1101 The modification time of files is set according to the received
1102 <header>Last-Modified</header> response header field. 1102 <header>Last-Modified</header> response header field.
1103 A response is first written to a temporary file, and then the file is renamed. 1103 The response is first written to a temporary file,
1104 and then the file is renamed.
1104 Starting from version 0.8.9, temporary files and the persistent store 1105 Starting from version 0.8.9, temporary files and the persistent store
1105 can be put on different file systems. 1106 can be put on different file systems.
1106 However, be aware that in this case a file is copied 1107 However, be aware that in this case a file is copied
1107 across two file systems instead of the cheap renaming operation. 1108 across two file systems instead of the cheap renaming operation.
1108 It is thus recommended that for any given location both saved files and a 1109 It is thus recommended that for any given location both saved files and a