From: André Malo
Date: Sat, 20 Nov 2004 00:14:13 +0000 (+0000)
Subject: update transformation
X-Git-Tag: 2.0.53~165
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=59cc0f2dd54e73626841a1e228fb89ed030d9870;p=thirdparty%2Fapache%2Fhttpd.git
update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@105904 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/man/apxs.8 b/docs/man/apxs.8
index 82f1ad563ea..759a04599dd 100644
--- a/docs/man/apxs.8
+++ b/docs/man/apxs.8
@@ -19,7 +19,7 @@
.el .ne 3
.IP "\\$1" \\$2
..
-.TH "APXS" 8 "2004-01-06" "Apache HTTP Server" "apxs"
+.TH "APXS" 8 "2004-11-20" "Apache HTTP Server" "apxs"
.SH NAME
apxs \- APache eXtenSion tool
@@ -96,7 +96,7 @@ This explicitly sets the module name for the -i (install) and -g (template gener
.TP
-q
-Performs a query for apxs's knowledge about certain settings\&. The \fIquery\fR parameters can be one or more of the following strings: CC, CFLAGS, CFLAGS_SHLIB, INCLUDEDIR, LD_SHLIB, LDFLAGS_SHLIB, LIBEXECDIR, LIBS_SHLIB, SBINDIR, SYSCONFDIR, TARGET\&. .PP Use this for manually determining settings\&. For instance use .nf INC=-I`apxs -q INCLUDEDIR` .fi .PP inside your own Makefiles if you need manual access to Apache's C header files\&.
+Performs a query for apxs's knowledge about certain settings\&. The \fIquery\fR parameters can be one or more of the following strings: CC, CFLAGS, CFLAGS_SHLIB, INCLUDEDIR, LD_SHLIB, LDFLAGS_SHLIB, LIBEXECDIR, LIBS_SHLIB, SBINDIR, SYSCONFDIR, TARGET\&. .PP Use this for manually determining settings\&. For instance use INC=-I`apxs -q INCLUDEDIR` .PP inside your own Makefiles if you need manual access to Apache's C header files\&.
.SS "Configuration Options"
diff --git a/docs/man/dbmmanage.1 b/docs/man/dbmmanage.1
index dafbe935c4b..a297070d375 100644
--- a/docs/man/dbmmanage.1
+++ b/docs/man/dbmmanage.1
@@ -19,7 +19,7 @@
.el .ne 3
.IP "\\$1" \\$2
..
-.TH "DBMMANAGE" 1 "2004-01-06" "Apache HTTP Server" "dbmmanage"
+.TH "DBMMANAGE" 1 "2004-11-20" "Apache HTTP Server" "dbmmanage"
.SH NAME
dbmmanage \- Manage user authentication files in DBM format
@@ -39,7 +39,7 @@ dbmmanage \- Manage user authentication files in DBM format
.SH "SUMMARY"
.PP
-dbmmanage is used to create and update the DBM format files used to store usernames and password for basic authentication of HTTP users\&. Resources available from the Apache HTTP server can be restricted to just the users listed in the files created by dbmmanage\&. This program can only be used when the usernames are stored in a DBM file\&. To use a flat-file database see htpasswd\&.
+dbmmanage is used to create and update the DBM format files used to store usernames and password for basic authentication of HTTP users via mod_auth_dbm\&. Resources available from the Apache HTTP server can be restricted to just the users listed in the files created by dbmmanage\&. This program can only be used when the usernames are stored in a DBM file\&. To use a flat-file database see htpasswd\&.
.PP
This manual page only lists the command line arguments\&. For details of the directives necessary to configure user authentication in httpd see the httpd manual, which is part of the Apache distribution or can be found at http://httpd\&.apache\&.org/\&.
@@ -85,25 +85,25 @@ plaintext (\fInot recommended\fR)
.TP
add
-Adds an entry for \fIusername\fR to \fIfilename\fR using the encrypted password \fIencpasswd\fR\&.
+Adds an entry for \fIusername\fR to \fIfilename\fR using the encrypted password \fIencpasswd\fR\&. dbmmanage passwords\&.dat add rbowen foKntnEF3KSXA
.TP
adduser
-Asks for a password and then adds an entry for \fIusername\fR to \fIfilename\fR\&.
+Asks for a password and then adds an entry for \fIusername\fR to \fIfilename\fR\&. dbmmanage passwords\&.dat adduser krietz
.TP
check
-Asks for a password and then checks if \fIusername\fR is in \fIfilename\fR and if it's password matches the specified one\&.
+Asks for a password and then checks if \fIusername\fR is in \fIfilename\fR and if it's password matches the specified one\&. dbmmanage passwords\&.dat check rbowen
.TP
delete
-Deletes the \fIusername\fR entry from \fIfilename\fR\&.
+Deletes the \fIusername\fR entry from \fIfilename\fR\&. dbmmanage passwords\&.dat delete rbowen
.TP
import
Reads \fIusername\fR:\fIpassword\fR entries (one per line) from STDIN and adds them to \fIfilename\fR\&. The passwords already have to be crypted\&.
.TP
update
-Same as the adduser command, except that it makes sure \fIusername\fR already exists in \fIfilename\fR\&.
+Same as the adduser command, except that it makes sure \fIusername\fR already exists in \fIfilename\fR\&. dbmmanage passwords\&.dat update rbowen
.TP
view
-Just displays the contents of the DBM file\&. If you specify a \fIusername\fR, it displays the particular record only\&.
+Just displays the contents of the DBM file\&. If you specify a \fIusername\fR, it displays the particular record only\&. dbmmanage passwords\&.dat view
.SH "BUGS"
diff --git a/docs/manual/mod/mpm_common.html.en b/docs/manual/mod/mpm_common.html.en
index 1db5718f30d..b8e83a1cc66 100644
--- a/docs/manual/mod/mpm_common.html.en
+++ b/docs/manual/mod/mpm_common.html.en
@@ -289,6 +289,12 @@ listens to
Listen [fe80::a00:20ff:fea7:ccea]:80
+ Error condition
+ Multiple Listen
directives for the same ip address and
+ port will result in an 'Address already in use' error message.
+
+
+
See also
- DNS Issues
diff --git a/docs/manual/programs/dbmmanage.html.en b/docs/manual/programs/dbmmanage.html.en
index 7a2894d620d..902f7b1d19b 100644
--- a/docs/manual/programs/dbmmanage.html.en
+++ b/docs/manual/programs/dbmmanage.html.en
@@ -23,7 +23,8 @@
dbmmanage
is used to create and update the DBM format files
- used to store usernames and password for basic authentication of HTTP users.
+ used to store usernames and password for basic authentication of HTTP users
+ via mod_auth_dbm
.
Resources available from the Apache HTTP server can be restricted to just
the users listed in the files created by dbmmanage
. This
program can only be used when the usernames are stored in a DBM file. To
@@ -105,18 +106,30 @@
add
- Adds an entry for username to filename using the
- encrypted password encpasswd.
+ encrypted password encpasswd.
+
+ dbmmanage passwords.dat add rbowen foKntnEF3KSXA
+
adduser
- Asks for a password and then adds an entry for username to
- filename.
+ filename.
+
+ dbmmanage passwords.dat adduser krietz
+
check
- Asks for a password and then checks if username is in
- filename and if it's password matches the specified one.
+ filename and if it's password matches the specified one.
+
+ dbmmanage passwords.dat check rbowen
+
delete
- - Deletes the username entry from filename.
+ - Deletes the username entry from filename.
+
+
dbmmanage passwords.dat delete rbowen
+
import
- Reads
username:password
entries
@@ -125,11 +138,17 @@
update
- Same as the
adduser
command, except that it makes
- sure username already exists in filename.
+ sure username already exists in filename.
+
+ dbmmanage passwords.dat update rbowen
+
view
- Just displays the contents of the DBM file. If you specify a
- username, it displays the particular record only.
+ username, it displays the particular record only.
+
+ dbmmanage passwords.dat view
+
