@@ -134,9 +134,11 @@ and no codec for the request's content-type is found
134134===== `cipher_suites`
135135
136136 * Value type is <<array,array>>
137- * Default value is `java.lang.String[ TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256]@459cfcca `
137+ * Default value is `[TLS_AES_128_GCM_SHA256, TLS_AES_256_GCM_SHA384, TLS_CHACHA20_POLY1305_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256, TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256, TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256]`
138138
139139The list of ciphers suite to use, listed by priorities.
140+ The default values applies for OpenJDK 11.0.14 and higher, for older versions the list does not include suites
141+ not supported by the JDK, such as the ChaCha20 family of ciphers.
140142
141143[id="plugins-{type}s-{plugin}-ecs_compatibility"]
142144===== `ecs_compatibility`
@@ -357,7 +359,7 @@ Time in milliseconds for an incomplete ssl handshake to timeout
357359 * There is no default value for this setting.
358360
359361SSL key to use.
360- NOTE: This key need to be in the PKCS8 format, you can convert it with https://www.openssl.org/docs/man1.1.0/apps/ pkcs8.html[OpenSSL]
362+ NOTE: This key need to be in the PKCS8 format, you can convert it with https://www.openssl.org/docs/man1.1.1/man1/openssl- pkcs8.html[OpenSSL]
361363for more information.
362364
363365[id="plugins-{type}s-{plugin}-ssl_key_passphrase"]
@@ -396,19 +398,19 @@ Number of threads to use for both accepting connections and handling requests
396398===== `tls_max_version`
397399
398400 * Value type is <<number,number>>
399- * Default value is `1.2 `
401+ * Default value is `1.3 `
400402
401- The maximum TLS version allowed for the encrypted connections. The value must be the one of the following:
402- 1.0 for TLS 1.0, 1.1 for TLS 1.1, 1.2 for TLS 1.2
403+ The maximum TLS version allowed for the encrypted connections.
404+ The value must be the one of the following: 1.1 for TLS 1.1, 1.2 for TLS 1.2, 1.3 for TLSv1.3
403405
404406[id="plugins-{type}s-{plugin}-tls_min_version"]
405407===== `tls_min_version`
406408
407409 * Value type is <<number,number>>
408- * Default value is `1`
410+ * Default value is `1.2 `
409411
410- The minimum TLS version allowed for the encrypted connections. The value must be one of the following:
411- 1.0 for TLS 1.0, 1.1 for TLS 1.1, 1.2 for TLS 1.2
412+ The minimum TLS version allowed for the encrypted connections.
413+ The value must be one of the following: 1.1 for TLS 1.1, 1.2 for TLS 1.2, 1.3 for TLSv1.3
412414
413415[id="plugins-{type}s-{plugin}-user"]
414416===== `user`
0 commit comments