From: Eric Covener Date: Wed, 6 Jan 2010 01:35:09 +0000 (+0000) Subject: Merge r896299 from trunk: X-Git-Tag: 2.2.15~116 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7e829a84f802d520b98a93f58bef96129e18e099;p=thirdparty%2Fapache%2Fhttpd.git Merge r896299 from trunk: clarify that FileETag is for static files only, and explicitly mention that ETags aren't generated for files parsed by mod_include. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@896300 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/core.html.en b/docs/manual/mod/core.html.en index e85a6bba4b1..5700d49dddd 100644 --- a/docs/manual/mod/core.html.en +++ b/docs/manual/mod/core.html.en @@ -1170,7 +1170,7 @@ in case of an error

FileETag Directive

+HTTP response header for static files @@ -1181,7 +1181,7 @@ HTTP response header

The FileETag directive configures the file attributes that are used to create the ETag (entity - tag) response header field when the document is based on a file. + tag) response header field when the document is based on a static file. (The ETag value is used in cache management to save network bandwidth.) In Apache 1.3.22 and earlier, the ETag value was always formed @@ -1225,6 +1225,12 @@ HTTP response header These conditional requests will break if the ETag format is changed via FileETag. +

Server Side Includes

+ An ETag is not generated for responses parsed by mod_include, + since the response entity can change without a change of the INode, MTime, or Size + of the static file with embedded SSI directives. +
+
top
diff --git a/docs/manual/mod/core.xml b/docs/manual/mod/core.xml index d54461a3c20..12c37e2dad1 100644 --- a/docs/manual/mod/core.xml +++ b/docs/manual/mod/core.xml @@ -1135,7 +1135,7 @@ in case of an error FileETag File attributes used to create the ETag -HTTP response header +HTTP response header for static files FileETag component ... FileETag INode MTime Size server configvirtual host @@ -1147,7 +1147,7 @@ HTTP response header

The FileETag directive configures the file attributes that are used to create the ETag (entity - tag) response header field when the document is based on a file. + tag) response header field when the document is based on a static file. (The ETag value is used in cache management to save network bandwidth.) In Apache 1.3.22 and earlier, the ETag value was always formed @@ -1191,6 +1191,12 @@ HTTP response header These conditional requests will break if the ETag format is changed via FileETag. + Server Side Includes + An ETag is not generated for responses parsed by mod_include, + since the response entity can change without a change of the INode, MTime, or Size + of the static file with embedded SSI directives. + +

Description:File attributes used to create the ETag -HTTP response header
Syntax:FileETag component ...
Default:FileETag INode MTime Size
Context:server config, virtual host, directory, .htaccess