Details
Description
As of now, createHttpsChannelConnector() enables SNI by default with Jetty:
private ServerConnector createHttpsChannelConnector( Server server, HttpConfiguration httpConfig) { httpConfig.setSecureScheme(HTTPS_SCHEME); httpConfig.addCustomizer(new SecureRequestCustomizer()); ServerConnector conn = createHttpChannelConnector(server, httpConfig);
with the default constructor without any parameters automatically setting sniHostCheck to true:
public SecureRequestCustomizer() { this(true); }
Proposal: We should make this configurable and probably default this to false.
Credit: Aravindan Vijayan
Attachments
Attachments
Issue Links
- is related to
-
HDDS-9878 Disable Server Name Indication (SNI) for Jetty
- Open