Ticket #51337: patch-redis.conf.diff

File patch-redis.conf.diff, 1.1 KB (added by slewsys (Andrew L. Moore), 8 years ago)

Replacement for files/patch-redis.conf.diff

  • redis.conf

    old new  
    146146#
    147147# Creating a pid file is best effort: if Redis is not able to create it
    148148# nothing bad happens, the server will start and run normally.
    149 pidfile /var/run/redis.pid
     149pidfile @PREFIX@/var/run/redis.pid
    150150
    151151# Specify the server verbosity level.
    152152# This can be one of:
     
    159159# Specify the log file name. Also the empty string can be used to force
    160160# Redis to log on the standard output. Note that if you use standard
    161161# output for logging but daemonize, logs will be sent to /dev/null
    162 logfile ""
     162logfile @PREFIX@/var/log/redis.log
    163163
    164164# To enable logging to the system logger, just set 'syslog-enabled' to yes,
    165165# and optionally update the other syslog parameters to suit your needs.
     
    243243# The Append Only File will also be created inside this directory.
    244244#
    245245# Note that you must specify a directory here, not a file name.
    246 dir ./
     246dir @PREFIX@/var/db/redis
    247247
    248248################################# REPLICATION #################################
    249249