From: Rainer Jung Date: Tue, 6 Oct 2015 21:49:03 +0000 (+0000) Subject: Add a docs remark about "SSLOptions StdEnvVars" X-Git-Tag: 2.2.32~177 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aa63251766fe24427c025d21f40c86b61484aaf0;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). CTR Backport of r1706989 from trunk resp. r1707123 from 2.4.x. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1707153 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_rewrite.xml b/docs/manual/mod/mod_rewrite.xml index 600d2898f26..553688b9694 100644 --- a/docs/manual/mod/mod_rewrite.xml +++ b/docs/manual/mod/mod_rewrite.xml @@ -885,7 +885,9 @@ RewriteRule ^index\.html$ welcome.html 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 cb4af664d47..d3f4d37051d 100644 --- a/docs/manual/mod/mod_ssl.xml +++ b/docs/manual/mod/mod_ssl.xml @@ -131,6 +131,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.