From: Nick Kew Date: Mon, 18 Feb 2013 11:08:53 +0000 (+0000) Subject: Fix the authn_socache example, as per users@ discussion and X-Git-Tag: 2.5.0-alpha~5766 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8f5bc367b7b48397b06ed486fe456289dbdc7a64;p=apache 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 --- 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

A simple usage example to accelerate mod_authn_dbd using dbm as a cache engine:

+#AuthnCacheSOCache is optional. If specified, it is server-wide +AuthnCacheSOCache dbm <Directory /usr/www/myhost/private> 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 </Directory>