From: Rainer Jung
Date: Tue, 6 Oct 2015 11:10:59 +0000 (+0000)
Subject: Add a docs remark about "SSLOptions StdEnvVars"
X-Git-Tag: 2.5.0-alpha~2759
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=814c6580e34f940c73b11cb9f07102fbe98ca477;p=thirdparty%2Fapache%2Fhttpd.git
Add a docs remark about "SSLOptions StdEnvVars"
being not necessary for mod_rewrite
"%{SSL:VARIABLE}" feature and for the mod_ssl
extensions to mod_log_config (%{VARIABLE}x).
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1706989 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/mod/mod_rewrite.xml b/docs/manual/mod/mod_rewrite.xml
index 941ac13baca..e133c7e6a63 100644
--- a/docs/manual/mod/mod_rewrite.xml
+++ b/docs/manual/mod/mod_rewrite.xml
@@ -692,7 +692,9 @@ AliasMatch "^/myapp" "/opt/myapp-1.2.3"
mod_ssl is loaded, but will always expand to
the empty string if it is not. Example:
%{SSL:SSL_CIPHER_USEKEYSIZE} may expand to
- 128.
+ 128. These variables are available even without
+ setting the StdEnvVars option of the
+ SSLOptions directive.
%{HTTP:header}, where header can be
diff --git a/docs/manual/mod/mod_ssl.xml b/docs/manual/mod/mod_ssl.xml
index 34022c7de38..a640c9f1f55 100644
--- a/docs/manual/mod/mod_ssl.xml
+++ b/docs/manual/mod/mod_ssl.xml
@@ -183,6 +183,9 @@ href="../ssl/ssl_compat.html">Compatibility chapter.
CustomLog "logs/ssl_request_log" "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
+These formats even work without setting the StdEnvVars
+option of the SSLOptions
+directive.