ports/databases/valkey/files/patch-valkey.conf
Yasuhiro Kimura e5026aa4df databases/valkey: Update to 7.2.5, first stable release of valkey
* Use 'install' target of Makefile in source tree to install binaries.
* Add pkgconfig to USES.
* Enable portscout check.

ReleaseNotes:	https://github.com/valkey-io/valkey/blob/7.2.5/00-RELEASENOTES
PR:		278466
Reported by:	Mohamed Akram
2024-04-21 11:28:16 +09:00

38 lines
1.5 KiB
Text

--- valkey.conf.orig 2024-04-16 04:18:47 UTC
+++ valkey.conf
@@ -303,7 +303,7 @@ tcp-keepalive 300
# By default the server does not run as a daemon. Use 'yes' if you need it.
# Note that the server will write a pid file in /var/run/valkey.pid when daemonized.
# When the server is supervised by upstart or systemd, this parameter has no impact.
-daemonize no
+daemonize yes
# If you run the server from upstart or systemd, the server can interact with your
# supervision tree. Options:
@@ -335,7 +335,7 @@ daemonize no
#
# Note that on modern Linux systems "/run/valkey.pid" is more conforming
# and should be used instead.
-pidfile /var/run/valkey_6379.pid
+pidfile %%VALKEY_RUNDIR%%/valkey.pid
# Specify the server verbosity level.
# This can be one of:
@@ -349,7 +349,7 @@ loglevel notice
# Specify the log file name. Also the empty string can be used to force
# the server 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 %%VALKEY_LOGDIR%%/valkey.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.
@@ -504,7 +504,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 %%VALKEY_DBDIR%%/
################################# REPLICATION #################################