summaryrefslogtreecommitdiff
path: root/redis.conf
diff options
context:
space:
mode:
authorJamie Scott <5336227+IAmATeaPot418@users.noreply.github.com>2019-10-16 13:31:19 -0700
committerGitHub <noreply@github.com>2019-10-16 13:31:19 -0700
commit45af2b174270af23a63b9032b2cbbb342d4e3a5f (patch)
treeee1ec2fed6d74a8f2f523dcde501bf5a36dd4859 /redis.conf
parentefb6495a446a92328512f8a66db701dab95fb933 (diff)
downloadredis-45af2b174270af23a63b9032b2cbbb342d4e3a5f.tar.gz
Update to directive in redis.conf (missing s)
The directive tls-prefer-server-cipher is actually tls-prefer-server-ciphers in config.c. This results in a failed directive call shown below. This pull request adds the "s" in ciphers so that the directive is able to be properly called in config.c ubuntu@ip-172-31-16-31:~/redis$ src/redis-server ./redis.conf *** FATAL CONFIG FILE ERROR *** Reading the configuration file, at line 200 >>> 'tls-prefer-server-cipher yes' Bad directive or wrong number of arguments
Diffstat (limited to 'redis.conf')
-rw-r--r--redis.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis.conf b/redis.conf
index 408426f15..6e02cfed7 100644
--- a/redis.conf
+++ b/redis.conf
@@ -197,7 +197,7 @@ tcp-keepalive 300
# When choosing a cipher, use the server's preference instead of the client
# preference. By default, the server follows the client's preference.
#
-# tls-prefer-server-cipher yes
+# tls-prefer-server-ciphers yes
################################# GENERAL #####################################