diff options
author | Sergey A. Osokin <osa@FreeBSD.org> | 2021-08-18 18:01:46 -0400 |
---|---|---|
committer | Sergey A. Osokin <osa@FreeBSD.org> | 2021-08-18 18:01:46 -0400 |
commit | 7ad2136d0760315c890e0126041e43ae24f13900 (patch) | |
tree | a39a738e513250c0fa67ea48342fe080e398bf1b /databases/redis6/files/patch-redis.conf | |
parent | multimedia/libva-intel-driver: enable HYBRID by default (again) (diff) |
databases/redis6: create a copy before update databases/redis to 6.2
Diffstat (limited to 'databases/redis6/files/patch-redis.conf')
-rw-r--r-- | databases/redis6/files/patch-redis.conf | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/databases/redis6/files/patch-redis.conf b/databases/redis6/files/patch-redis.conf new file mode 100644 index 000000000000..e70b7e609ca1 --- /dev/null +++ b/databases/redis6/files/patch-redis.conf @@ -0,0 +1,38 @@ +--- redis.conf.orig 2019-11-22 16:54:22 UTC ++++ redis.conf +@@ -203,7 +203,7 @@ tcp-keepalive 300 + + # 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 ++daemonize yes + + # If you run Redis from upstart or systemd, Redis can interact with your + # supervision tree. Options: +@@ -225,7 +225,7 @@ supervised no + # + # 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 %%REDIS_RUNDIR%%/redis.pid + + # Specify the server verbosity level. + # This can be one of: +@@ -238,7 +238,7 @@ loglevel notice + # 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 %%REDIS_LOGDIR%%/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. +@@ -330,7 +330,7 @@ dbfilename dump.rdb + # 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 %%REDIS_DBDIR%%/ + + ################################# REPLICATION ################################# + |