diff options
author | Nick Kew <niq@apache.org> | 2013-02-18 12:08:53 +0100 |
---|---|---|
committer | Nick Kew <niq@apache.org> | 2013-02-18 12:08:53 +0100 |
commit | 8f5bc367b7b48397b06ed486fe456289dbdc7a64 (patch) | |
tree | 2f261480787dce0a95a2b4a902de46095f592847 /docs/manual | |
parent | Updates. (diff) | |
download | apache2-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.xml | 6 |
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 <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> </highlight> </section> |