Repository: qpid-jms Updated Branches: refs/heads/master 394946a6d -> 79e76862b
NO-JIRA: update the docs for the SSL/TLS transport options to add more descriptions Project: http://git-wip-us.apache.org/repos/asf/qpid-jms/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-jms/commit/0ba767fb Tree: http://git-wip-us.apache.org/repos/asf/qpid-jms/tree/0ba767fb Diff: http://git-wip-us.apache.org/repos/asf/qpid-jms/diff/0ba767fb Branch: refs/heads/master Commit: 0ba767fbc394bf0453a248d8507a3f8b771125b1 Parents: 394946a Author: Robert Gemmell <[email protected]> Authored: Thu Jun 11 12:12:28 2015 +0100 Committer: Robert Gemmell <[email protected]> Committed: Thu Jun 11 17:45:16 2015 +0100 ---------------------------------------------------------------------- qpid-jms-docs/Configuration.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/0ba767fb/qpid-jms-docs/Configuration.md ---------------------------------------------------------------------- diff --git a/qpid-jms-docs/Configuration.md b/qpid-jms-docs/Configuration.md index 6c8dc18..a9e26fc 100644 --- a/qpid-jms-docs/Configuration.md +++ b/qpid-jms-docs/Configuration.md @@ -131,14 +131,14 @@ The complete set of SSL Transport options is listed below: + **transport.keyStorePassword** default is to read from the system property "javax.net.ssl.keyStorePassword" + **transport.trustStoreLocation** default is to read from the system property "javax.net.ssl.trustStore" + **transport.trustStorePassword** default is to read from the system property "javax.net.ssl.keyStorePassword" -+ **transport.storeType** default is 'JKS' ++ **transport.storeType** The type of trust store being used. Default is "JKS". + **transport.contextProtocol** The protocol argument used when getting an SSLContext. Default is "TLS". + **transport.enabledCipherSuites** The cipher suites to enable, comma separated. No default, meaning the context default ciphers are used. Any disabled ciphers are removed from this. + **transport.disabledCipherSuites** The cipher suites to disable, comma separated. Ciphers listed here are removed from the enabled ciphers. No default. + **transport.enabledProtocols** The protocols to enable, comma separated. No default, meaning the context default protocols are used. Any disabled protocols are removed from this. + **transport.disabledProtocols** The protocols to disable, comma separated. Protocols listed here are removed from the enabled protocols. Default is "SSLv2Hello,SSLv3". -+ **transport.trustAll** defaults to false -+ **transport.verifyHost** defaults to true ++ **transport.trustAll** Whether to trust the provided server certificate implicitly, regardless of any configured trust store. Defaults to false. ++ **transport.verifyHost** Whether to verify that the hostname being connected to matches with the provided server certificate. Defaults to true. + **transport.keyAlias** The alias to use when selecting a keypair from the keystore if required to send a client certificate to the server. No default. ### Failover Configuration options --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
