openbsd-ports/databases/redis/patches/patch-redis_conf
2012-02-28 11:57:11 +00:00

80 lines
3.0 KiB
Plaintext

$OpenBSD: patch-redis_conf,v 1.2 2012/02/28 11:57:11 dcoppa Exp $
--- redis.conf.orig Wed Feb 22 14:23:43 2012
+++ redis.conf Tue Feb 28 12:29:39 2012
@@ -13,12 +13,13 @@
# units are case insensitive so 1GB 1Gb 1gB are all the same.
# By default Redis does not run as a daemon. Use 'yes' if you need it.
-# Note that Redis will write a pid file in /var/run/redis.pid when daemonized.
-daemonize no
+# Note that Redis will write a pid file in ${DBDIR}/redis.pid
+# when daemonized.
+daemonize yes
-# When running daemonized, Redis writes a pid file in /var/run/redis.pid by
-# default. You can specify a custom pid file location here.
-pidfile /var/run/redis.pid
+# When running daemonized, Redis writes a pid file in ${DBDIR}/redis.pid
+# by default. You can specify a custom pid file location here.
+pidfile ${DBDIR}/redis.pid
# Accept connections on the specified port, default is 6379.
# If port 0 is specified Redis will not listen on a TCP socket.
@@ -27,7 +28,7 @@ port 6379
# If you want you can bind a single interface, if the bind option is not
# specified all the interfaces will listen for incoming connections.
#
-# bind 127.0.0.1
+bind 127.0.0.1
# Specify the path for the unix socket that will be used to listen for
# incoming connections. There is no default, so Redis will not listen
@@ -50,17 +51,17 @@ loglevel verbose
# Specify the log file name. Also 'stdout' can be used to force
# Redis to log on the standard output. Note that if you use standard
# output for logging but daemonize, logs will be sent to /dev/null
-logfile stdout
+# logfile stdout
# To enable logging to the system logger, just set 'syslog-enabled' to yes,
# and optionally update the other syslog parameters to suit your needs.
-# syslog-enabled no
+syslog-enabled yes
# Specify the syslog identity.
-# syslog-ident redis
+syslog-ident redis
# Specify the syslog facility. Must be USER or between LOCAL0-LOCAL7.
-# syslog-facility local0
+syslog-facility user
# Set the number of databases. The default database is DB 0, you can select
# a different one on a per-connection basis using SELECT <dbid> where
@@ -104,7 +105,7 @@ dbfilename dump.rdb
# Also the Append Only File will be created inside this directory.
#
# Note that you must specify a directory here, not a file name.
-dir ./
+dir ${DBDIR}
################################# REPLICATION #################################
@@ -164,6 +165,7 @@ slave-serve-stale-data yes
# use a very strong password otherwise it will be very easy to break.
#
# requirepass foobared
+requirepass very-strong-password
# Command renaming.
#
@@ -386,7 +388,7 @@ vm-enabled no
# *** WARNING *** if you are using a shared hosting the default of putting
# the swap file under /tmp is not secure. Create a dir with access granted
# only to Redis user and configure Redis to create the swap file there.
-vm-swap-file /tmp/redis.swap
+vm-swap-file ${DBDIR}/redis.swap
# vm-max-memory configures the VM to use at max the specified amount of
# RAM. Everything that deos not fit will be swapped on disk *if* possible, that