From: Igor Galić
Date: Wed, 29 Sep 2010 00:23:31 +0000 (+0000)
Subject: Documentation for r1002415.
X-Git-Tag: 2.3.9~398
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7f69a48b1bbb28bec918f7c981e4d37c83862e62;p=apache
Documentation for r1002415.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1002427 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/mod/core.html.en b/docs/manual/mod/core.html.en
index 59134d2a62..137f84f1a2 100644
--- a/docs/manual/mod/core.html.en
+++ b/docs/manual/mod/core.html.en
@@ -1196,7 +1196,8 @@ in case of an error
same connection or request, which request happens on which connection.
A %L
format string is also available in
mod_log_config
, to allow to correlate access log entries
- with error log lines.
+ with error log lines. If mod_unique_id
is loaded, its
+ unique id will be used as log ID for requests.
Example (somewhat similar to default format)
ErrorLogFormat "[%{u}t] [%-m:%l] [pid %P] %7F: %E: [client\ %a]
@@ -1529,6 +1530,14 @@ satisfied by a request at runtime
($req), response headers ($resp) or environment ($env) in your
expression.
+
Apart from =
, If
can use the IN
+ operator to compare if the expression is in a given range:
+
+
+ <If %{REQUEST_METHOD} IN GET,HEAD,OPTIONS>
+
+
+
See also
- How <Directory>, <Location>,
diff --git a/docs/manual/mod/core.xml b/docs/manual/mod/core.xml
index 885d1db96d..85295136c8 100644
--- a/docs/manual/mod/core.xml
+++ b/docs/manual/mod/core.xml
@@ -1511,6 +1511,14 @@ satisfied by a request at runtime
You may compare the value of any variable in the request headers
($req), response headers ($resp) or environment ($env) in your
expression.
+
+ Apart from =
, If
can use the IN
+ operator to compare if the expression is in a given range:
+
+
+ <If %{REQUEST_METHOD} IN GET,HEAD,OPTIONS>
+
+
How <Directory>, <Location>,