其他分享
首页 > 其他分享> > 客户端和服务器不支持常用的 SSL 协议版本或密码套件

客户端和服务器不支持常用的 SSL 协议版本或密码套件

作者:互联网

问题

现在最新版的谷歌,Edge浏览器不支持1.2以下
image

项目部署 tomcat 修改问题修改方法

    <!-- Define a SSL HTTP/1.1 Connector on port 8443
         This connector uses the BIO implementation that requires the JSSE
         style configuration. When using the APR/native implementation, the
         OpenSSL style configuration is required as described in the APR/native
         documentation -->
    
	<Connector port="4443" protocol="org.apache.coyote.http11.Http11NioProtocol"
               maxThreads="150"
               scheme="https" secure="true" SSLEnabled="true"
               clientAuth="false" sslProtocol="TLS"
               keystoreFile="${catalina.home}/conf/server.keystore"
               keystorePass="changeit" 
			   URIEncoding="UTF-8"
			   sslEnabledProtocols="TLSv1.3,TLSv1.2"	# 支持协议ssl版本 sslEnabledProtocols="TLSv1.3,TLSv1.2"
			      />

    <!-- Define an AJP 1.3 Connector on port 8009 -->
	<!--
    <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />-->

标签:tomcat,1.2,修改,套件,SSL,Edge,最新版,客户端
来源: https://www.cnblogs.com/liuzonglin/p/15897867.html