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

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1439106 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_cache.xml

index 5c47e60dea9251d33a57a38fabf5658c2111732f..bb5946ca76bd3d969b493bc1021d44dcba2a0298 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>