Fixes #3633 - endpointIdentificationAlgorithm enabled by default jetty-ssl-context.xml.
Updated *.xml and *.mod to reflect the right default (null), rather than "HTTPS". Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
This commit is contained in:
parent
e45c176649
commit
7d52a6957b
|
@ -21,7 +21,7 @@
|
|||
<Set name="TrustStorePassword"><Property name="jetty.sslContext.trustStorePassword" deprecated="jetty.truststore.password"/></Set>
|
||||
<Set name="TrustStoreType"><Property name="jetty.sslContext.trustStoreType"/></Set>
|
||||
<Set name="TrustStoreProvider"><Property name="jetty.sslContext.trustStoreProvider"/></Set>
|
||||
<Set name="EndpointIdentificationAlgorithm"><Property name="jetty.sslContext.endpointIdentificationAlgorithm" default="HTTPS"/></Set>
|
||||
<Set name="EndpointIdentificationAlgorithm"><Property name="jetty.sslContext.endpointIdentificationAlgorithm"/></Set>
|
||||
<Set name="NeedClientAuth"><Property name="jetty.sslContext.needClientAuth" deprecated="jetty.ssl.needClientAuth" default="false"/></Set>
|
||||
<Set name="WantClientAuth"><Property name="jetty.sslContext.wantClientAuth" deprecated="jetty.ssl.wantClientAuth" default="false"/></Set>
|
||||
<Set name="useCipherSuitesOrder"><Property name="jetty.sslContext.useCipherSuitesOrder" default="true"/></Set>
|
||||
|
|
|
@ -61,7 +61,7 @@ basehome:modules/ssl/keystore|etc/keystore
|
|||
|
||||
## The Endpoint Identification Algorithm
|
||||
## Same as javax.net.ssl.SSLParameters#setEndpointIdentificationAlgorithm(String)
|
||||
#jetty.sslContext.endpointIdentificationAlgorithm=HTTPS
|
||||
#jetty.sslContext.endpointIdentificationAlgorithm=
|
||||
|
||||
## SSL JSSE Provider
|
||||
# jetty.sslContext.provider=
|
||||
|
|
Loading…
Reference in New Issue