Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 54CAEF237 for ; Mon, 8 Apr 2013 12:01:01 +0000 (UTC) Received: (qmail 52491 invoked by uid 500); 8 Apr 2013 12:01:01 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 52230 invoked by uid 500); 8 Apr 2013 12:00:59 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 52207 invoked by uid 99); 8 Apr 2013 12:00:58 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Apr 2013 12:00:58 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Apr 2013 12:00:57 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id AFA7F23888EA; Mon, 8 Apr 2013 12:00:37 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1465602 - /httpd/httpd/trunk/docs/manual/mod/mod_authz_dbm.xml Date: Mon, 08 Apr 2013 12:00:37 -0000 To: cvs@httpd.apache.org From: humbedooh@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130408120037.AFA7F23888EA@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: humbedooh Date: Mon Apr 8 12:00:37 2013 New Revision: 1465602 URL: http://svn.apache.org/r1465602 Log: Add example use case to doc Modified: httpd/httpd/trunk/docs/manual/mod/mod_authz_dbm.xml Modified: httpd/httpd/trunk/docs/manual/mod/mod_authz_dbm.xml URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_authz_dbm.xml?rev=1465602&r1=1465601&r2=1465602&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/mod/mod_authz_dbm.xml (original) +++ httpd/httpd/trunk/docs/manual/mod/mod_authz_dbm.xml Mon Apr 8 12:00:37 2013 @@ -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 +