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
caching should be enabled for.</p>
<highlight language="config">
-# Cache content
+# Cache content (normal handler only)
+CacheQuickHandler off
<Location /foo>
CacheEnable disk
</Location>
-# Cache regex
+# Cache regex (normal handler only)
+CacheQuickHandler off
<LocationMatch foo$>
CacheEnable disk
</LocationMatch>
-# 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>