summaryrefslogtreecommitdiffstats
path: root/docs/manual
diff options
context:
space:
mode:
authorNick Kew <niq@apache.org>2013-02-18 12:08:53 +0100
committerNick Kew <niq@apache.org>2013-02-18 12:08:53 +0100
commit8f5bc367b7b48397b06ed486fe456289dbdc7a64 (patch)
tree2f261480787dce0a95a2b4a902de46095f592847 /docs/manual
parentUpdates. (diff)
downloadapache2-8f5bc367b7b48397b06ed486fe456289dbdc7a64.tar.xz
apache2-8f5bc367b7b48397b06ed486fe456289dbdc7a64.zip
Fix the authn_socache example, as per users@ discussion and
Ben Johnson's comment on the page itself @apache.org.. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1447192 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual')
-rw-r--r--docs/manual/mod/mod_authn_socache.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/manual/mod/mod_authn_socache.xml b/docs/manual/mod/mod_authn_socache.xml
index 97cdeca380..a48b3ddd87 100644
--- a/docs/manual/mod/mod_authn_socache.xml
+++ b/docs/manual/mod/mod_authn_socache.xml
@@ -70,15 +70,17 @@ the load on backends</description>
<p>A simple usage example to accelerate <module>mod_authn_dbd</module>
using dbm as a cache engine:</p>
<highlight language="config">
+#AuthnCacheSOCache is optional. If specified, it is server-wide
+AuthnCacheSOCache dbm
&lt;Directory /usr/www/myhost/private&gt;
AuthType Basic
AuthName "Cached Authentication Example"
AuthBasicProvider socache dbd
AuthDBDUserPWQuery "SELECT password FROM authn WHERE user = %s"
AuthnCacheProvideFor dbd
- AuthnCacheContext dbd-authn-example
- AuthnCacheSOCache dbm
Require valid-user
+ #Optional
+ AuthnCacheContext dbd-authn-example
&lt;/Directory&gt;
</highlight>
</section>