Ticket #51337: patch-redis.conf.diff
File patch-redis.conf.diff, 1.1 KB (added by slewsys (Andrew L. Moore), 9 years ago) |
---|
-
redis.conf
old new 146 146 # 147 147 # Creating a pid file is best effort: if Redis is not able to create it 148 148 # nothing bad happens, the server will start and run normally. 149 pidfile /var/run/redis.pid149 pidfile @PREFIX@/var/run/redis.pid 150 150 151 151 # Specify the server verbosity level. 152 152 # This can be one of: … … 159 159 # Specify the log file name. Also the empty string can be used to force 160 160 # Redis to log on the standard output. Note that if you use standard 161 161 # output for logging but daemonize, logs will be sent to /dev/null 162 logfile ""162 logfile @PREFIX@/var/log/redis.log 163 163 164 164 # To enable logging to the system logger, just set 'syslog-enabled' to yes, 165 165 # and optionally update the other syslog parameters to suit your needs. … … 243 243 # The Append Only File will also be created inside this directory. 244 244 # 245 245 # Note that you must specify a directory here, not a file name. 246 dir ./246 dir @PREFIX@/var/db/redis 247 247 248 248 ################################# REPLICATION ################################# 249 249