Files
ports/databases/redis/files/patch-redis.conf
T
Muhammad Moinur Rahman 99443fcaf3 databases/redis: Update version 8.6.3=>8.8.0
- Add OPTION REDISBLOOM
- Create piddir at startup (tmpfs). [1]

Changelog: https://github.com/redis/redis/releases/tag/8.8.0

PR:		264500 [1]
Reported by:	bdrewery [1]
2026-05-30 18:02:32 +02:00

39 lines
1.4 KiB
Plaintext

--- redis.conf.orig 2026-05-25 09:26:50 UTC
+++ redis.conf
@@ -324,7 +324,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.
# When Redis is supervised by upstart or systemd, this parameter has no impact.
-daemonize no
+daemonize yes
# If you run Redis from upstart or systemd, Redis can interact with your
# supervision tree. Options:
@@ -356,7 +356,7 @@ daemonize no
#
# Note that on modern Linux systems "/run/redis.pid" is more conforming
# and should be used instead.
-pidfile /var/run/redis_6379.pid
+pidfile %%REDIS_RUNDIR%%/redis.pid
# Specify the server verbosity level.
# This can be one of:
@@ -370,7 +370,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.
@@ -530,7 +530,7 @@ rdb-del-sync-files no
# 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 #################################