$ cd /path/to/3rdparty
diff --git a/docs/manual/dso.html.en b/docs/manual/dso.html.en
index ad324c8d82..bff578e444 100644
--- a/docs/manual/dso.html.en
+++ b/docs/manual/dso.html.en
@@ -132,17 +132,18 @@ HREF="mod/mod_so.html">mod_so 's LoadModule command in your
httpd.conf file to load this module at server startup or restart.
-To simplify this creation of DSO files for Apache modules (especially for
-third-party modules) a new support program named apxs (APache
-eXtenSion) is available. It can be used to build DSO based modules
-outside of the Apache source tree. The idea is simple: When
-installing Apache the configure 's make install
-procedure installs the Apache C header files and puts the platform-dependent
-compiler and linker flags for building DSO files into the apxs
-program. This way the user can use apxs to compile his Apache
-module sources without the Apache distribution source tree and without having
-to fiddle with the platform-dependent compiler and linker flags for DSO
-support.
+ To simplify this creation of DSO files for Apache modules
+(especially for third-party modules) a new support program named apxs (APache eXtenSion) is
+available. It can be used to build DSO based modules outside
+of the Apache source tree. The idea is simple: When installing
+Apache the configure 's make install
+procedure installs the Apache C header files and puts the
+platform-dependent compiler and linker flags for building DSO files
+into the apxs program. This way the user can use
+apxs to compile his Apache module sources without the
+Apache distribution source tree and without having to fiddle with the
+platform-dependent compiler and linker flags for DSO support.
To place the complete Apache core program into a DSO library (only required
on some of the supported platforms to force the linker to export the apache
@@ -309,7 +310,7 @@ of the Apache source tree:
-- Build and install via
apxs :
+ - Build and install via apxs:
$ cd /path/to/3rdparty
diff --git a/docs/manual/misc/FAQ-I.html b/docs/manual/misc/FAQ-I.html
index 751800846e..c56b46d96e 100644
--- a/docs/manual/misc/FAQ-I.html
+++ b/docs/manual/misc/FAQ-I.html
@@ -31,7 +31,7 @@
Apache Server Frequently Asked Questions
- $Revision: 1.7 $ ($Date: 2000/04/18 20:54:03 $)
+ $Revision: 1.8 $ ($Date: 2001/01/28 00:19:28 $)
The latest version of this FAQ is always available from the main
@@ -213,21 +213,23 @@
How can I rotate my log files?
The simple answer: by piping the transfer log into an appropriate
- log file rotation utility.
- The longer answer: In the src/support/ directory, you will find a
- utility called rotatelogs which can be used like this:
- TransferLog "|/path/to/rotatelogs /path/to/logs/access_log 86400"
- to enable daily rotation of the log files.
- A more sophisticated solution of a logfile rotation utility is
- available under the name cronolog from Andrew Ford's site at
- http://www.ford-mason.co.uk/resources/cronolog/. It can automatically
- create logfile subdirectories based on time and date, and can have a
- constant symlink point to the rotating logfiles. (As of version 1.6.1,
- cronolog is available under the Apache License).
- Use it like this:
- CustomLog "|/path/to/cronolog --symlink=/usr/local/apache/logs/access_log /usr/local/apache/logs/%Y/%m/access_log" combined
-
+ log file rotation utility. The longer answer: In the
+ src/support/ directory, you will find a utility called rotatelogs which can be used
+ like this: TransferLog "|/path/to/rotatelogs
+ /path/to/logs/access_log 86400" to enable daily rotation of
+ the log files. A more sophisticated solution of a logfile
+ rotation utility is available under the name cronolog
+ from Andrew Ford's site at http://www.ford-mason.co.uk/resources/cronolog/. It can
+ automatically create logfile subdirectories based on time and date,
+ and can have a constant symlink point to the rotating logfiles. (As
+ of version 1.6.1, cronolog is available under the Apache License). Use it like this:
+ CustomLog "|/path/to/cronolog
+ --symlink=/usr/local/apache/logs/access_log
+ /usr/local/apache/logs/%Y/%m/access_log" combined
-
diff --git a/docs/manual/mod/core.html b/docs/manual/mod/core.html
index 6b115381bb..e0fe26a51a 100644
--- a/docs/manual/mod/core.html
+++ b/docs/manual/mod/core.html
@@ -894,11 +894,12 @@ versions of Apache prior to 1.3. It was changed to
off
in order to save the network traffic for those sites that don't truly
need the reverse lookups done. It is also better for the end users
because they don't have to suffer the extra latency that a lookup
-entails.
-Heavily loaded sites should leave this directive off , since DNS
-lookups can take considerable amounts of time. The utility logresolve,
-provided in the /support directory, can be used to look up host names
-from logged IP addresses offline.
+entails. Heavily loaded sites should leave this directive
+off , since DNS lookups can take considerable amounts of
+time. The utility logresolve, provided in the
+/support directory, can be used to look up host names from
+logged IP addresses offline.
diff --git a/docs/manual/mod/mod_auth.html b/docs/manual/mod/mod_auth.html
index a2e97f1ee6..04508d4468 100644
--- a/docs/manual/mod/mod_auth.html
+++ b/docs/manual/mod/mod_auth.html
@@ -133,10 +133,10 @@ slash), it is treated as relative to the ServerRoot.
by a colon, followed by the crypt() encrypted password. The behavior
of multiple occurrences of the same user is undefined.
-The utility htpasswd which is installed as part of the
-binary distribution, or which can be found in src/support ,
-is used to maintain this password file. See the man
-page for more details. In short
+The utility htpasswd which is
+installed as part of the binary distribution, or which can be found in
+src/support , is used to maintain this password file. See
+the man page for more details. In short
htpasswd -c Filename username
diff --git a/docs/manual/mod/mod_auth_db.html b/docs/manual/mod/mod_auth_db.html
index dc57f4b451..4d57738dcd 100644
--- a/docs/manual/mod/mod_auth_db.html
+++ b/docs/manual/mod/mod_auth_db.html
@@ -173,6 +173,11 @@ rely upon the string being NULL-appended, so if you are having trouble
using DB files interchangeably between applications this may be a
part of the problem.
+ A perl script called
+href="../programs/dbmmanage.html">dbmmanage is included with
+Apache. This program can be used to create and update DB format
+password files for use with this module.
+
See also AuthName,
AuthType and
AuthDBGroupFile.
diff --git a/docs/manual/mod/mod_auth_dbm.html b/docs/manual/mod/mod_auth_dbm.html
index 25ee0ddece..43cd444aa6 100644
--- a/docs/manual/mod/mod_auth_dbm.html
+++ b/docs/manual/mod/mod_auth_dbm.html
@@ -164,6 +164,11 @@ rely upon the string being NULL-appended, so if you are having trouble
using DBM files interchangeably between applications this may be a
part of the problem.
+ A perl script called
+href="../programs/dbmmanage.html">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,
AuthType and
AuthDBMGroupFile.
diff --git a/docs/manual/mod/mod_auth_digest.html b/docs/manual/mod/mod_auth_digest.html
index 996a8086f1..5cda2a778b 100644
--- a/docs/manual/mod/mod_auth_digest.html
+++ b/docs/manual/mod/mod_auth_digest.html
@@ -120,8 +120,8 @@ the list of users and encoded passwords for digest authentication.
Filename is the absolute path to the user file.
The digest file uses a special format. Files in this format can be
-created using the "htdigest" utility found in the support/ subdirectory of
-the Apache distribution.
+created using the htdigest
+utility found in the support/ subdirectory of the Apache distribution.
diff --git a/docs/manual/mod/mod_log_config.html b/docs/manual/mod/mod_log_config.html
index 4a980e3e40..4350b1af7d 100644
--- a/docs/manual/mod/mod_log_config.html
+++ b/docs/manual/mod/mod_log_config.html
@@ -255,7 +255,8 @@ deleted so that it will open a new log.
Alternatively, log files can be rotated automatically be writing
-them through a pipe to a program designed for that purpose.
+them through a pipe to a program designed for that purpose such
+as rotatelogs.
diff --git a/docs/manual/stopping.html b/docs/manual/stopping.html
index ed75c8a092..b2e50b5562 100644
--- a/docs/manual/stopping.html
+++ b/docs/manual/stopping.html
@@ -43,10 +43,11 @@ Modify those examples to match your
ServerRoot and
PidFile settings.
-A shell script called apachectl is provided
-which automates the processing of signalling Apache.
-For details about this script, see the documentation
-on starting Apache.
+A shell script called apachectl is provided which
+automates the processing of signalling Apache. For details about this
+script, see the documentation on starting
+Apache.
Stop Now
diff --git a/docs/manual/stopping.html.en b/docs/manual/stopping.html.en
index ed75c8a092..b2e50b5562 100644
--- a/docs/manual/stopping.html.en
+++ b/docs/manual/stopping.html.en
@@ -43,10 +43,11 @@ Modify those examples to match your
ServerRoot and
PidFile settings.
-A shell script called apachectl is provided
-which automates the processing of signalling Apache.
-For details about this script, see the documentation
-on starting Apache.
+A shell script called apachectl is provided which
+automates the processing of signalling Apache. For details about this
+script, see the documentation on starting
+Apache.
Stop Now
|
|