From 5201a207da214bae88d9c6ac2b4afa4e4158c9c4 Mon Sep 17 00:00:00 2001 From: Joshua Slive Date: Sun, 30 Dec 2001 15:17:48 +0000 Subject: [PATCH] A little cleanup on the AuthDBMType Directive. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92665 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_auth_dbm.html | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/docs/manual/mod/mod_auth_dbm.html b/docs/manual/mod/mod_auth_dbm.html index e0e09a448b..09b8a23770 100644 --- a/docs/manual/mod/mod_auth_dbm.html +++ b/docs/manual/mod/mod_auth_dbm.html @@ -32,9 +32,7 @@

This module provides for HTTP Basic Authentication, where the usernames and passwords are stored in DBM type database files. It is an alternative to the plain text password files - provided by mod_auth and the - Berkely DB password files provided by mod_auth_db.

+ provided by mod_auth.

Directives

@@ -155,7 +153,7 @@ problem.

A perl script called - href="../programs/dbmmanage.html">dbmmanage is included with + dbmmanage is included with Apache. This program can be used to create and update DBM format password files for use with this module.

See also AuthName, AuthDBMType - Syntax: AuthDBMType - type of DBM being used
+ default|SDBM|GDBM|DB
Default: -AuthDBMType default(which sets it to the default DBM compiled in)
- + AuthDBMType default
Context: directory, .htaccess
@@ -182,7 +178,15 @@ rel="Help">Status: Extension
Module: mod_auth_dbm -

Setting this directive allows the user to change the type of DBM file which holds the user data. Current valid values are (SDBM | GDBM | DB) these may not all be available on your system

+ +

Sets the type of database file that is used to store the passwords. +The default database type is determined at compile time. The +availability of other types of database files also depends on +compile-time settings.

+ +

It is crucial that whatever program you use to create your password +files is configured to use the same type of database.

+

AuthDBMAuthoritative

-- 2.50.1