-
Notifications
You must be signed in to change notification settings - Fork 41.9k
Closed
Description
We don't support SNI with Jetty and an attempt to use a server name SSL bundle with a Jetty servlet web server fails fast:
Lines 247 to 250 in e51efef
| private void customizeSsl(Server server, InetSocketAddress address) { | |
| Assert.state(getSsl().getServerNameBundles().isEmpty(), "Server name SSL bundles are not supported with Jetty"); | |
| new SslServerCustomizer(getHttp2(), address, getSsl().getClientAuth(), getSslBundle()).customize(server); | |
| } |
A similar assertion should be made on the reactive side:
Lines 251 to 253 in e51efef
| private void customizeSsl(Server server, InetSocketAddress address) { | |
| new SslServerCustomizer(getHttp2(), address, getSsl().getClientAuth(), getSslBundle()).customize(server); | |
| } |
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
type: bugA general bugA general bug