Skip to content

Commit a4cfb24

Browse files
committed
Add TLSv1.0 removal to breaking changes
1 parent 3f45c09 commit a4cfb24

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

docs/reference/migration/migrate_7_0/settings.asciidoc

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,3 +131,17 @@ The removal of these default settings also removes the ability for a component t
131131
fallback to a default configuration when using TLS. Each component (realm, transport, http,
132132
http client, etc) must now be configured with their own settings for TLS if it is being
133133
used.
134+
135+
[float]
136+
[[tls-v1-removed]]
137+
==== TLS v1.0 disabled
138+
139+
TLS version 1.0 is now disabled by default as it suffers from
140+
https://www.owasp.org/index.php/Transport_Layer_Protection_Cheat_Sheet#Rule_-_Only_Support_Strong_Protocols[known security issues].
141+
The default protocols are now TLSv1.2 and TLSv1.1.
142+
You can enable TLS v1.0 by configuring the relevant `ssl.supported_protocols` setting to include `"TLSv1"`, for example:
143+
[source,yaml]
144+
--------------------------------------------------
145+
xpack.security.http.ssl.supported_protocols: [ "TLSv1.2", "TLSv1.1", "TLSv1" ]
146+
--------------------------------------------------
147+

0 commit comments

Comments
 (0)