From: Stefan Eissing Date: Wed, 16 Aug 2017 12:35:49 +0000 (+0000) Subject: On the trunk: X-Git-Tag: 2.5.0-alpha~219 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bcea74ec34d9a516b833d9440065a34d45d6f741;p=thirdparty%2Fapache%2Fhttpd.git On the trunk: mod_ssl.xml: completing descriptions and proper section name use. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805185 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_ssl.xml b/docs/manual/mod/mod_ssl.xml index 1000597132e..70b65947ce8 100644 --- a/docs/manual/mod/mod_ssl.xml +++ b/docs/manual/mod/mod_ssl.xml @@ -2813,9 +2813,9 @@ SSLOpenSSLConfCmd SignatureAlgorithms RSA+SHA384:ECDSA+SHA256 - -SSLPolicySection - + +SSLPolicy +Define a named set of SSL configurations <SSLPolicy name> server config Available in httpd 2.4.28 and later @@ -2823,7 +2823,7 @@ SSLOpenSSLConfCmd SignatureAlgorithms RSA+SHA384:ECDSA+SHA256

This directive defines a set of SSL* configurations under and gives it a name. This name can be used in the directives -SSLPolicy and SSLProxyPolicy +SSLPolicyUse and SSLProxyPolicy to apply this configuration set in the current context.

Examples @@ -2921,8 +2921,8 @@ Include ssl-policies.conf
-SSLPolicy - +SSLPolicyUse +Apply a SSLPolicy by name SSLPolicy name server config virtual host @@ -2930,7 +2930,7 @@ Include ssl-policies.conf

This directive applies the set of SSL* directives defined -under 'name' (see SSLPolicySection) as the base +under 'name' (see SSLPolicy) as the base settings in the current context. That means that any other SSL* directives you make in the same context remain effective. So, the effective SSLProtocol value in the following settings are:

@@ -2981,14 +2981,14 @@ later ones overshadowing the earlier ones:

SSLProxyPolicy - +Apply the SSLProxy* parts alone of a SSLPolicy SSLProxyPolicy name server config virtual host Available in httpd 2.4.28 and later -

This directive is similar to SSLPolicy, but +

This directive is similar to SSLPolicyUse, but applies only the SSLProxy* directives defined in the policy. This helps when you need different policies for front and backends:

@@ -2999,6 +2999,8 @@ SSLProxyPolicy intermediate +

In this example, the 'modern' policy is first applied for front- and backend. The backend +parts are then overwritten by the 'intermediate' policy settings.