--- redis.conf.orig	2016-08-02 04:00:29.000000000 -0500
+++ redis.conf	2016-08-24 00:41:00.000000000 -0500
@@ -147,7 +147,7 @@
 #
 # Creating a pid file is best effort: if Redis is not able to create it
 # nothing bad happens, the server will start and run normally.
-pidfile /var/run/redis_6379.pid
+pidfile @PREFIX@/var/run/redis_6379.pid
 
 # Specify the server verbosity level.
 # This can be one of:
@@ -160,7 +160,7 @@
 # Specify the log file name. Also the empty string 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 ""
+logfile @PREFIX@/var/log/redis.log
 
 # To enable logging to the system logger, just set 'syslog-enabled' to yes,
 # and optionally update the other syslog parameters to suit your needs.
@@ -244,7 +244,7 @@
 # The Append Only File will also be created inside this directory.
 #
 # Note that you must specify a directory here, not a file name.
-dir ./
+dir @PREFIX@/var/db/redis
 
 ################################# REPLICATION #################################