From: André Malo Date: Sun, 29 Feb 2004 18:05:28 +0000 (+0000) Subject: update transformation X-Git-Tag: pre_ajp_proxy~596 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d796d1ed81ece558628d170b3ac8a788d03c69ee;p=apache update transformation git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102828 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_headers.html.en b/docs/manual/mod/mod_headers.html.en index 3fe3b99b86..c5efb1d3e0 100644 --- a/docs/manual/mod/mod_headers.html.en +++ b/docs/manual/mod/mod_headers.html.en @@ -207,8 +207,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 diff --git a/docs/manual/mod/mod_ssl.html.en b/docs/manual/mod/mod_ssl.html.en index 9847c874d7..f6ba0984f3 100644 --- a/docs/manual/mod/mod_ssl.html.en +++ b/docs/manual/mod/mod_ssl.html.en @@ -128,9 +128,17 @@ compatibility variables.

SSL_SERVER_A_SIG string Algorithm used for the signature of server's certificate SSL_SERVER_A_KEY string Algorithm used for the public key of server's certificate SSL_SERVER_CERT string PEM-encoded server certificate -[ where x509 is a component of a X.509 DN: - C,ST,L,O,OU,CN,T,I,G,S,D,UID,Email ] + +

x509 specifies a component of an X.509 DN; one of +C,ST,L,O,OU,CN,T,I,G,S,D,UID,Email. In Apache 2.1 and +later, x509 may also include a numeric _n +suffix. If the DN in question contains multiple attributes of the +same name, this suffix is used as an index to select a particular +attribute. For example, where the server certificate subject DN +included two OU fields, SSL_SERVER_S_DN_OU_0 and +SSL_SERVER_S_DN_OU_1 could be used to reference each.

+
top

Custom Log Formats