comparison xml/en/docs/http/ngx_http_fastcgi_module.xml @ 1005:2275611970dd

Removed open_file_cache_errors from proxy_store examples. The open_file_cache_errors directive is mostly unrelated and off by default, there is no real need to have it in examples.
author Maxim Dounin <mdounin@mdounin.ru>
date Tue, 22 Oct 2013 17:37:46 +0400
parents c5ccf511346a
children 2ad2f30efdf2
comparison
equal deleted inserted replaced
1004:13209fa58a15 1005:2275611970dd
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="10"> 13 rev="11">
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
1044 <para> 1044 <para>
1045 This directive can be used to create local copies of static unchangeable 1045 This directive can be used to create local copies of static unchangeable
1046 files, e.g.: 1046 files, e.g.:
1047 <example> 1047 <example>
1048 location /images/ { 1048 location /images/ {
1049 root /data/www; 1049 root /data/www;
1050 open_file_cache_errors off; 1050 error_page 404 = /fetch$uri;
1051 error_page 404 = /fetch$uri;
1052 } 1051 }
1053 1052
1054 location /fetch/ { 1053 location /fetch/ {
1055 internal; 1054 internal;
1056 1055