From 8f5bc367b7b48397b06ed486fe456289dbdc7a64 Mon Sep 17 00:00:00 2001 From: Nick Kew Date: Mon, 18 Feb 2013 11:08:53 +0000 Subject: [PATCH] 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 --- docs/manual/mod/mod_authn_socache.xml | 6 ++++-- 1 file 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

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> -- 2.40.0