You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ni...@apache.org on 2013/02/18 12:08:54 UTC

svn commit: r1447192 - /httpd/httpd/trunk/docs/manual/mod/mod_authn_socache.xml

Author: niq
Date: Mon Feb 18 11:08:53 2013
New Revision: 1447192

URL: http://svn.apache.org/r1447192
Log:
Fix the authn_socache example, as per users@ discussion and
Ben Johnson's comment on the page itself @apache.org..

Modified:
    httpd/httpd/trunk/docs/manual/mod/mod_authn_socache.xml

Modified: httpd/httpd/trunk/docs/manual/mod/mod_authn_socache.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_authn_socache.xml?rev=1447192&r1=1447191&r2=1447192&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_authn_socache.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_authn_socache.xml Mon Feb 18 11:08:53 2013
@@ -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>