From: Ken Coar
Date: Sat, 20 Feb 1999 00:13:29 +0000 (+0000)
Subject: Remove the ReferIgnore directive from mod_log_config (Dean's veto).
X-Git-Tag: 1.3.5~18
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e61e5ad3e08aaba0d0a3760d36b0e155424fb5cb;p=apache
Remove the ReferIgnore directive from mod_log_config (Dean's veto).
Get rid of the array for the 'env=' clause, since it only takes
a single variable name; use a char * instead. Check for conditional
envars by seeing if the condition string is non-NULL rather than
using a separate Boolean cell.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@82826 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/mod/mod_log_config.html b/docs/manual/mod/mod_log_config.html
index 1d1c0171e7..99b95e7d8e 100644
--- a/docs/manual/mod/mod_log_config.html
+++ b/docs/manual/mod/mod_log_config.html
@@ -54,13 +54,11 @@ defined or not. This is settable on a per-logfile
basis.
Beginning with Apache 1.3.5, the mod_log_config module has
-also subsumed the RefererIgnore
directive from
-mod_log_referer. The use
-of RefererIgnore
is deprecated, and should be
-replaced by combinations of
+also subsumed the RefererIgnore
functionality from
+mod_log_referer. The effect
+of RefererIgnore
can be achieved by combinations of
SetEnvIf
directives
-and environment variable controlled CustomLog
-definitions.
+and conditional CustomLog
definitions.
@@ -214,7 +212,6 @@ the user that starts the server.
CustomLog
CustomLog (conditional)
LogFormat
-RefererIgnore
TransferLog
@@ -401,53 +398,6 @@ it doesn't actually apply the format and make it the default.
-
-Syntax: RefererIgnore string string ...
-Context: server config, virtual host
-Status: Base
-Compatibility:> Only available in Apache 1.3.5
- or later
-
-Module: mod_log_config
-
-
-The RefererIgnore directive adds to the list of strings to ignore in
-Referer headers. If any of the strings in the list is contained in
-the Referer header, then no referrer information will be logged for the
-request. Example:
-
-
- RefererIgnore www.ncsa.uiuc.edu
-
-
-will avoid logging references from www.ncsa.uiuc.edu.
-
-
-Note: All transaction logfiles
-(defined by CustomLog
or TransferLog
) in
-the same server scope as the RefererIgnore
(e.g.,
-in the same <VirtualHost>
container)
-are affected by
-this directive. If you want to control this behaviour on a
-per-logfile basis, you should use the
-conditional CustomLog
-capability.
-