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-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0a22c7a27512b5037fcbbd21c7e5183e98e31a0d;p=thirdparty%2Fapache%2Fhttpd.git 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 97cdeca3807..a48b3ddd876 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>