Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 84988 invoked from network); 14 Dec 2005 16:39:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 14 Dec 2005 16:39:59 -0000 Received: (qmail 87664 invoked by uid 500); 14 Dec 2005 16:39:58 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 87626 invoked by uid 500); 14 Dec 2005 16:39:58 -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 87610 invoked by uid 99); 14 Dec 2005 16:39:58 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Dec 2005 08:39:58 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 14 Dec 2005 08:39:56 -0800 Received: (qmail 84867 invoked by uid 65534); 14 Dec 2005 16:39:36 -0000 Message-ID: <20051214163936.84866.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r356801 - in /httpd/httpd/trunk/docs/manual: howto/ mod/ Date: Wed, 14 Dec 2005 16:39:15 -0000 To: cvs@httpd.apache.org From: nd@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: nd Date: Wed Dec 14 08:39:01 2005 New Revision: 356801 URL: http://svn.apache.org/viewcvs?rev=356801&view=rev Log: update transformation Modified: httpd/httpd/trunk/docs/manual/howto/auth.html.en httpd/httpd/trunk/docs/manual/howto/auth.xml.ja httpd/httpd/trunk/docs/manual/howto/auth.xml.ko httpd/httpd/trunk/docs/manual/howto/index.html.en httpd/httpd/trunk/docs/manual/howto/index.html.ja.euc-jp httpd/httpd/trunk/docs/manual/howto/index.html.ko.euc-kr httpd/httpd/trunk/docs/manual/howto/index.xml.ja httpd/httpd/trunk/docs/manual/howto/index.xml.ko httpd/httpd/trunk/docs/manual/howto/index.xml.meta httpd/httpd/trunk/docs/manual/mod/mod_auth_basic.html.en httpd/httpd/trunk/docs/manual/mod/mod_auth_basic.xml.ja httpd/httpd/trunk/docs/manual/mod/mod_auth_basic.xml.ko httpd/httpd/trunk/docs/manual/mod/mod_auth_digest.html.en httpd/httpd/trunk/docs/manual/mod/mod_auth_digest.xml.ko Modified: httpd/httpd/trunk/docs/manual/howto/auth.html.en URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/docs/manual/howto/auth.html.en?rev=356801&r1=356800&r2=356801&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/howto/auth.html.en (original) +++ httpd/httpd/trunk/docs/manual/howto/auth.html.en Wed Dec 14 08:39:01 2005 @@ -35,6 +35,7 @@
  • Letting more than one person in
  • Possible problems
  • +
  • Alternate password storage
  • More information
  • top
    @@ -233,7 +234,7 @@ in this case, optional, since file is the default value for this directive. You'll need to use this directive if you are choosing a different source for authentication, such as - mod_authn_dbm or mod_auth_dbd.

    + mod_authn_dbm or mod_authn_dbd.

    The AuthUserFile directive sets the path to the password file that we just @@ -292,6 +293,8 @@

    AuthType Basic
    AuthName "By Invitation Only"
    + # Optional line: + AuthBasicProvider file AuthUserFile /usr/local/apache/passwd/passwords
    AuthGroupFile /usr/local/apache/passwd/groups
    Require group GroupName @@ -338,6 +341,33 @@ server machine, but you can expect to see slowdowns once you get above a few hundred entries, and may wish to consider a different authentication method at that time.

    +
    top
    +
    +

    Alternate password storage

    + +

    Because storing passwords in plain text files has the above + problems, you may wish to store your passwords somewhere else, such + as in a database.

    + +

    mod_authn_dbm and mod_authn_dbd + are two modules which make this possible. Rather than selecting + AuthBasicSource file, + instead you can choose dbm or dbd as your + storage format.

    + +

    To select a dbd file rather than a text file, for example:

    + +

    + <Directory /www/docs/private>
    + AuthName "Private"
    + AuthType Basic
    + AuthBasicProvider dbm
    + AuthDBMUserFile /www/passwords/passwd.dbm
    + Require valid-user +

    + +

    Other options are available. Consult the + mod_authn_dbm documentation for more details.

    top

    More information

    Modified: httpd/httpd/trunk/docs/manual/howto/auth.xml.ja URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/docs/manual/howto/auth.xml.ja?rev=356801&r1=356800&r2=356801&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/howto/auth.xml.ja [iso-2022-jp] (original) +++ httpd/httpd/trunk/docs/manual/howto/auth.xml.ja [iso-2022-jp] Wed Dec 14 08:39:01 2005 @@ -1,7 +1,7 @@ - + + + + + + +