我正在尝试提供一个简单的“Hello world!” 使用 Undertow 嵌入式服务器通过带有自签名证书的 HTTPS 响应。但是我ERR_SSL_VERSION_OR_CIPHER_MISMATCH
在客户端(Chrome)和SSLHandshakeException: no cipher suites in common
服务器日志中。
似乎除了KeyManager[]
数组之外,我还需要提供要使用的 TLS 协议,但我找不到应该把它放在哪里。完整示例可在https://github.com/isopov/undertow-https-test/blob/master/src/main/java/com/sopovs/moradanen/UndertowHttpsTest.java
获得,而在https://github.com/ isopov/undertow-https-test/blob/master/src/main/java/com/sopovs/moradanen/JettyHttpsTest.java有使用 Jetty 服务器进行类似测试的示例(证明证书是好的)。