我正在尝试在localhost上为HTTPS配置tomcat。 我正在使用自签名认证。 我在server.xml中添加了以下代码行。
<Connector
port="8443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" disableUploadTimeout="true"
acceptCount="100" debug="0" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS" SSLEngine="on"
keystoreFile="path-to-keystore" keystorePass="password" />
我在浏览器中遇到以下错误:
An error occurred during a connection to localhost:8443. Peer reports it experienced an internal error. (Error code: ssl_error_internal_error_alert)
任何人都可以指导我正确的方向。感谢。