From: Daniel Gruno Date: Mon, 8 Apr 2013 12:00:37 +0000 (+0000) Subject: Add example use case to doc X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6a1dae8cee39195ee63cce94d78e2dd10eb064a9;p=thirdparty%2Fapache%2Fhttpd.git Add example use case to doc git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1465602 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_authz_dbm.xml b/docs/manual/mod/mod_authz_dbm.xml index f9ba8828584..5f172161a7b 100644 --- a/docs/manual/mod/mod_authz_dbm.xml +++ b/docs/manual/mod/mod_authz_dbm.xml @@ -37,6 +37,23 @@ Require +
+Example usage +

Note that using mod_authz_dbm requires you to require dbm-group +instead of group: +

+ +<Directory "/foo/bar"> + AuthType Basic + AuthName "Secure Area" + AuthBasicProvider dbm + AuthDBMUserFile site/data/users + AuthDBMGroupFile site/data/users + Require dbm-group admin +</Directory> + +
+ AuthDBMGroupFile Sets the name of the database file containing the list @@ -118,3 +135,4 @@ store list of user groups +