This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/8.5.x by this push: new 1d3374d63b TLS handshake debugging is supported in NIO2 as well 1d3374d63b is described below commit 1d3374d63bf0c6b20f02fbf44b49ad9f51bd49fb 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 d563715ed7..3932930373 100644 --- a/webapps/docs/changelog.xml +++ b/webapps/docs/changelog.xml @@ -108,8 +108,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 dd357d9e53..ff4aae5651 100644 --- a/webapps/docs/ssl-howto.xml +++ b/webapps/docs/ssl-howto.xml @@ -567,8 +567,12 @@ for more information about installation of APR. A basic OCSP-enabled connector <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