diff options
author | Remi Collet <remi@remirepo.net> | 2025-07-23 14:40:07 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2025-07-23 14:40:07 +0200 |
commit | c362c30cdeb66f10fee84f1703960cb93d68b95c (patch) | |
tree | 37ec4dc2bbb01701334a964fe29b12d8cfba8bcc /redis-conf.patch | |
parent | 0c82b2e914f98b4f3fd847009eba07cd1228523d (diff) |
add /etc/redis/modules drop-in directory for module configuration files
Diffstat (limited to 'redis-conf.patch')
-rw-r--r-- | redis-conf.patch | 29 |
1 files changed, 19 insertions, 10 deletions
diff --git a/redis-conf.patch b/redis-conf.patch index f4e297f..96664ff 100644 --- a/redis-conf.patch +++ b/redis-conf.patch @@ -1,7 +1,16 @@ -diff -up ./redis.conf.rpm ./redis.conf ---- ./redis.conf.rpm 2025-07-10 11:31:26.588797534 +0200 -+++ ./redis.conf 2025-07-10 11:31:26.590823030 +0200 -@@ -153,7 +153,7 @@ tcp-backlog 511 +diff -up ./redis.conf.old ./redis.conf +--- ./redis.conf.old 2025-07-06 13:59:42.000000000 +0200 ++++ ./redis.conf 2025-07-23 14:21:49.223387091 +0200 +@@ -43,6 +43,8 @@ + # include /path/to/other.conf + # include /path/to/fragments/*.conf + # ++# Module configuration files ++include /etc/redis/modules/*.conf + + ################################## MODULES ##################################### + +@@ -153,7 +155,7 @@ tcp-backlog 511 # incoming connections. There is no default, so Redis will not listen # on a unix socket when not specified. # @@ -10,7 +19,7 @@ diff -up ./redis.conf.rpm ./redis.conf # unixsocketperm 700 # Close the connection after a client is idle for N seconds (0 to disable) -@@ -339,7 +339,7 @@ daemonize no +@@ -339,7 +341,7 @@ daemonize no # # Note that on modern Linux systems "/run/redis.pid" is more conforming # and should be used instead. @@ -19,7 +28,7 @@ diff -up ./redis.conf.rpm ./redis.conf # Specify the server verbosity level. # This can be one of: -@@ -353,7 +353,7 @@ loglevel notice +@@ -353,7 +355,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 @@ -28,7 +37,7 @@ diff -up ./redis.conf.rpm ./redis.conf # To enable logging to the system logger, just set 'syslog-enabled' to yes, # and optionally update the other syslog parameters to suit your needs. -@@ -513,7 +513,7 @@ rdb-del-sync-files no +@@ -513,7 +515,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. @@ -37,9 +46,9 @@ diff -up ./redis.conf.rpm ./redis.conf ################################# REPLICATION ################################# -diff -up ./sentinel.conf.rpm ./sentinel.conf ---- ./sentinel.conf.rpm 2025-07-10 11:31:26.589683845 +0200 -+++ ./sentinel.conf 2025-07-10 11:31:26.592442565 +0200 +diff -up ./sentinel.conf.old ./sentinel.conf +--- ./sentinel.conf.old 2025-07-06 13:59:42.000000000 +0200 ++++ ./sentinel.conf 2025-07-23 14:20:34.526056727 +0200 @@ -17,7 +17,7 @@ daemonize no # When running daemonized, Redis Sentinel writes a pid file in # /var/run/redis-sentinel.pid by default. You can specify a custom pid file |