From 2dbe458064fcef5a38a630012170a770c075139b Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Sat, 28 Feb 2004 23:24:58 +0000 Subject: [PATCH] Document the %s format specifier. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102816 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_headers.xml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docs/manual/mod/mod_headers.xml b/docs/manual/mod/mod_headers.xml index 61616fdb14..77da2a029f 100644 --- a/docs/manual/mod/mod_headers.xml +++ b/docs/manual/mod/mod_headers.xml @@ -249,8 +249,24 @@ is available only in Apache 2.0 %{FOOBAR}e The contents of the environment variable FOOBAR. + + %{FOOBAR}s + The contents of the SSL environment + variable FOOBAR, if mod_ssl is enabled. + + Note + +

The %s format specifier is only available in + Apache 2.1 and later; it can be used instead of %e + to avoid the overhead of enabling SSLOptions + +StdEnvVars. If SSLOptions +StdEnvVars must + be enabled anyway for some other reason, %e will be + more efficient than %s.

+ +
+

When the Header directive is used with the add, append, or set argument, a fourth argument may be used to specify conditions -- 2.50.1