You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ro...@apache.org on 2021/08/18 15:27:22 UTC

[activemq-artemis] branch main updated: ARTEMIS-3421: update docs to reflect change in default, missed from ARTEMIS-3367, and clarify a bit

This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git


The following commit(s) were added to refs/heads/main by this push:
     new d7f30e7  ARTEMIS-3421: update docs to reflect change in default, missed from ARTEMIS-3367, and clarify a bit
d7f30e7 is described below

commit d7f30e7a33af2d80b4b784dda168c2461922c606
Author: Robbie Gemmell <ro...@apache.org>
AuthorDate: Wed Aug 18 16:24:08 2021 +0100

    ARTEMIS-3421: update docs to reflect change in default, missed from ARTEMIS-3367, and clarify a bit
---
 docs/user-manual/en/configuring-transports.md | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/docs/user-manual/en/configuring-transports.md b/docs/user-manual/en/configuring-transports.md
index 9467183..ca31bab 100644
--- a/docs/user-manual/en/configuring-transports.md
+++ b/docs/user-manual/en/configuring-transports.md
@@ -461,15 +461,15 @@ additional properties:
 
 - `verifyHost`
 
-  When used on an `acceptor` the `CN` of the connecting client's SSL
-  certificate will be compared to its hostname to verify they match. This is
-  useful only for 2-way SSL.
+  When used on a `connector` the `CN` or Subject Alternative Name values
+  of the server's SSL certificate will be compared with the hostname being
+  connected to in order to verify a match. This is useful for both 1-way and 2-way SSL.
 
-  When used on a `connector` the `CN` of the server's SSL certificate will be
-  compared to its hostname to verify they match. This is useful for both 1-way
-  and 2-way SSL.
+  When used on an `acceptor` the `CN` or Subject Alternative Name values
+  of the connecting client's SSL certificate will be compared to its
+  hostname to verify a match. This is useful only for 2-way SSL.
 
-  Valid values are `true` or `false`. Default is `false`.
+  Valid values are `true` or `false`. Default is `true` for connectors, and `false` for acceptors.
     
 - `trustAll`