From a56d88d4b1e060a8f101857341896e5c88dfda80 Mon Sep 17 00:00:00 2001
From: Graham Leggett
Date: Sun, 27 Jan 2013 16:02:22 +0000
Subject: [PATCH] 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/trunk@1439106 13f79535-47bb-0310-9956-ffa450edef68
---
docs/manual/mod/mod_cache.xml | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/docs/manual/mod/mod_cache.xml b/docs/manual/mod/mod_cache.xml
index 5c47e60dea..bb5946ca76 100644
--- a/docs/manual/mod/mod_cache.xml
+++ b/docs/manual/mod/mod_cache.xml
@@ -377,23 +377,25 @@ manager
caching should be enabled for.
-# 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/
--
2.40.0