From f93e1417b96c46f2bc88acb81d2d47e9bbb0a52a Mon Sep 17 00:00:00 2001 From: Yossi Gottlieb Date: Wed, 20 May 2020 15:14:23 +0300 Subject: [PATCH] TLS: Improve tls-protocols clarity in redis.conf. --- redis.conf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/redis.conf b/redis.conf index bab7cff47..1aa760599 100644 --- a/redis.conf +++ b/redis.conf @@ -176,9 +176,10 @@ tcp-keepalive 300 # tls-cluster yes # Explicitly specify TLS versions to support. Allowed values are case insensitive -# and include "TLSv1", "TLSv1.1", "TLSv1.2", "TLSv1.3" (OpenSSL >= 1.1.1) +# and include "TLSv1", "TLSv1.1", "TLSv1.2", "TLSv1.3" (OpenSSL >= 1.1.1) or +# any combination. To enable only TLSv1.2 and TLSv1.3, use: # -# tls-protocols TLSv1.2 +# tls-protocols "TLSv1.2 TLSv1.3" # Configure allowed ciphers. See the ciphers(1ssl) manpage for more information # about the syntax of this string.