summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdgars Irmejs <edgars.irmejs@gmail.com>2014-04-21 21:48:14 +0300
committerantirez <antirez@gmail.com>2014-08-07 17:13:01 +0200
commit67c4fbed8206cc091ff6a699c38cfa19e52eb005 (patch)
tree092d4453fe263f9d4d4930acec2942569613fd63
parent9b4efe6cf4e165bac8031a26541ab04ff6d31402 (diff)
downloadredis-67c4fbed8206cc091ff6a699c38cfa19e52eb005.tar.gz
Change unixsocketperm comment to 700 from 755
According to unix manuals, "Connecting to the socket object requires read/write permission." -- mode 755 is useless for anybody other than the owner. Fixes #1696
-rw-r--r--redis.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis.conf b/redis.conf
index 33f28a5bb..ae774d6fe 100644
--- a/redis.conf
+++ b/redis.conf
@@ -68,7 +68,7 @@ tcp-backlog 511
# on a unix socket when not specified.
#
# unixsocket /tmp/redis.sock
-# unixsocketperm 755
+# unixsocketperm 700
# Close the connection after a client is idle for N seconds (0 to disable)
timeout 0