DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
Attribute | Default | Description |
|---|---|---|
disableCNCheck | false | Indicates whether that the hostname given in the HTTPS URL will be checked against the service's Common Name (CN) given in its certificate during requests, and failing if there is a mismatch. If set to true (not recommended for production use), such checks will be bypassed. That will allow you, for example, to use a URL such as localhost during development. |
sslSocketFactory | A SSLSocketFactory to use. All other bean properties are ignored if this is set. | |
sslCacheTimeout | 86400 seconds (24 hours) | SSL Cache Timeout in seconds. |
useHttpsURLConnectionDefaultSslSocketFactory | false | This attribute specifies if HttpsURLConnection.getDefaultSSLSocketFactory() should be used to create https connections. If 'true', 'jsseProvider', 'secureSocketProtocol', 'trustManagers', 'keyManagers', 'secureRandom', 'cipherSuites' and 'cipherSuitesFilter' configuration parameters are ignored. |
useHttpsURLConnectionDefaultHostnameVerifier | false | This attribute specifies if HttpsURLConnection.getDefaultHostnameVerifier() should be used to create https connections. If 'true', 'disableCNCheck' configuration parameter is ignored. |
| hostnameVerifier | A custom HostnameVerifier instance to use | |
| serverNames | This element holds the list of SNI server names (since 4.1.5 / 3.6.10 / 4.0.11) |
Disable CN Check
disableCNCheck is a parameterized boolean, you can use a fixed variable true|false as well as a Spring externalized property variable (e.g. ${disable-https-hostname-verification}) or a Spring expression (e.g. #{systemProperties['dev-mode']}).
...