diff '--color=auto' -ur valkey-8.1.1.orig/valkey.conf valkey-8.1.1/valkey.conf
--- valkey-8.1.1.orig/valkey.conf	2025-04-23 22:38:09.000000000 +0200
+++ valkey-8.1.1/valkey.conf	2025-06-08 14:58:26.043138697 +0200
@@ -385,7 +385,7 @@
 #
 # Note that on modern Linux systems "/run/valkey.pid" is more conforming
 # and should be used instead.
-pidfile /var/run/valkey_6379.pid
+pidfile /run/valkey/valkey.pid
 
 # Specify the server verbosity level.
 # This can be one of:
@@ -416,7 +416,7 @@
 # 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 /var/log/valkey/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.
@@ -606,7 +606,7 @@
 # Note that modifying 'dir' during runtime may have unexpected behavior,
 # for example when a child process is running, related file operations may
 # have unexpected effects.
-dir ./
+dir /var/lib/valkey/
 
 ################################# REPLICATION #################################
 
@@ -1249,6 +1249,7 @@
 # output buffers (but this is not needed if the policy is 'noeviction').
 #
 # maxmemory <bytes>
+maxmemory 64MB
 
 # MAXMEMORY POLICY: how the server will select what to remove when maxmemory
 # is reached. You can select one from the following behaviors:
@@ -1278,6 +1279,7 @@
 # The default is:
 #
 # maxmemory-policy noeviction
+maxmemory-policy allkeys-lru
 
 # LRU, LFU and minimal TTL algorithms are not precise algorithms but approximated
 # algorithms (in order to save memory), so you can tune it for speed or
