]> granicus.if.org Git - apache/commitdiff
Backport r1439106:
authorGraham Leggett <minfrin@apache.org>
Sun, 27 Jan 2013 16:07:50 +0000 (16:07 +0000)
committerGraham Leggett <minfrin@apache.org>
Sun, 27 Jan 2013 16:07:50 +0000 (16:07 +0000)
Clarify more clearly in the examples which configurations are limited
to CacheQuickHandler off and which support both.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1439108 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_cache.xml

index 4e16dab612e80d96171b4f8db819decf3f0b33c7..9c3d8e40affee4f1a298c680481911e05560e1ad 100644 (file)
@@ -377,23 +377,25 @@ manager</description>
     caching should be enabled for.</p>
 
     <highlight language="config">
-# Cache content
+# Cache content (normal handler only)
+CacheQuickHandler off
 &lt;Location /foo&gt;
     CacheEnable disk
 &lt;/Location&gt;
 
-# Cache regex
+# Cache regex (normal handler only)
+CacheQuickHandler off
 &lt;LocationMatch foo$&gt;
     CacheEnable disk
 &lt;/LocationMatch&gt;
 
-# Cache proxied url's
+# Cache proxied url's (normal or quick handler)
 CacheEnable  disk  /
 
-# Cache FTP-proxied url's
+# Cache FTP-proxied url's (normal or quick handler)
 CacheEnable  disk  ftp://
 
-# Cache content from www.example.org
+# Cache content from www.example.org (normal or quick handler)
 CacheEnable  disk  http://www.example.org/
     </highlight>