directfb: do not use inexistant configure options
[buildroot-gz.git] / package / redis / 0003-redis.conf-sane-defaults.patch
blob6ee3f210ca23623fac9895e10d101d7e33ededfa
1 Taken from archlinux redis package
2 See https://projects.archlinux.org/svntogit/community.git/tree/trunk/redis.conf-sane-defaults.patch?h=packages/redis&id=5b2491ea61b746f289acebd12bc66e337d7e5b88
4 Signed-off-by: Martin Bark <martin@barkynet.com>
6 =========================================================================
7 diff --git a/redis.conf b/redis.conf
8 index 6efb6ac..344e021 100644
9 --- a/redis.conf
10 +++ b/redis.conf
11 @@ -61,7 +61,7 @@ tcp-backlog 511
12 # Examples:
14 # bind 192.168.1.100 10.0.0.1
15 -# bind 127.0.0.1
16 +bind 127.0.0.1
18 # Specify the path for the Unix socket that will be used to listen for
19 # incoming connections. There is no default, so Redis will not listen
20 @@ -87,7 +87,7 @@ timeout 0
21 # On other kernels the period depends on the kernel configuration.
23 # A reasonable value for this option is 60 seconds.
24 -tcp-keepalive 0
25 +tcp-keepalive 60
27 # Specify the server verbosity level.
28 # This can be one of:
29 @@ -184,7 +184,7 @@ dbfilename dump.rdb
30 # The Append Only File will also be created inside this directory.
32 # Note that you must specify a directory here, not a file name.
33 -dir ./
34 +dir /var/lib/redis/
36 ################################# REPLICATION #################################