This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/main by this push: new 9ebfe1393e TLS handshake debugging is supported in NIO2 as well 9ebfe1393e is described below commit 9ebfe1393e5fcab03eb825a4983cb96984a3ebd4 Author: Mark Thomas <ma...@apache.org> AuthorDate: Mon Jun 13 19:51:17 2022 +0100 TLS handshake debugging is supported in NIO2 as well --- webapps/docs/changelog.xml | 5 +++-- webapps/docs/ssl-howto.xml | 6 +++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml index 21a65b9443..b223e83add 100644 --- a/webapps/docs/changelog.xml +++ b/webapps/docs/changelog.xml @@ -117,8 +117,9 @@ <subsection name="Coyote"> <changelog> <add> - Provide a dedicated logger - (<code>org.apache.tomcat.util.net.NioEndpoint.handshake</code>) for TLS + Provide dedicated loggers + (<code>org.apache.tomcat.util.net.NioEndpoint.handshake</code> / + <code>org.apache.tomcat.util.net.Nio2Endpoint.handshake</code>) for TLS handshake failures. (markt) </add> </changelog> diff --git a/webapps/docs/ssl-howto.xml b/webapps/docs/ssl-howto.xml index ab62bfbeac..a5a7015fcf 100644 --- a/webapps/docs/ssl-howto.xml +++ b/webapps/docs/ssl-howto.xml @@ -524,8 +524,12 @@ nsComment="Testing OCSP Certificate" <p>Additional information may be obtained about TLS handshake failures by configuring the dedicated TLS handshake logger to log debug level messages by -adding the following to <code>$CATALINA_BASE/conf/logging.properties</code>:</p> +adding the following to <code>$CATALINA_BASE/conf/logging.properties</code>: <source>org.apache.tomcat.util.net.NioEndpoint.handshake.level=FINE</source> +or +<source>org.apache.tomcat.util.net.Nio2Endpoint.handshake.level=FINE</source> +depending on the <strong>Connector</strong> being used. +</p> <p>Here is a list of common problems that you may encounter when setting up SSL communications, and what to do about them.</p> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org