bugfixes
All checks were successful
release-tag / release-image (push) Successful in 1m30s

This commit is contained in:
2025-06-09 23:42:58 +02:00
parent 4eba0f4b26
commit ebd186705d
3 changed files with 42 additions and 11 deletions

36
redis.conf Normal file
View File

@@ -0,0 +1,36 @@
#######################################
# Netzwerk
#######################################
bind 0.0.0.0
protected-mode no
port 6379
#######################################
# Laufzeit (Container-freundlich)
#######################################
daemonize no
pidfile /var/run/redis.pid
logfile ""
#######################################
# Speicherort für alle persistenten Dateien
#######################################
dir /data
#######################################
# AOF-Persistenz (empfohlen für moderne Redis-Setups)
#######################################
appendonly yes
appendfilename "appendonly.aof"
# automatische AOF-Rewrite-Grenzen (Defaults sind OK, hier explizit)
auto-aof-rewrite-percentage 100
auto-aof-rewrite-min-size 64mb
#######################################
# RDB-Snapshots (optional, ergänzen Defaults)
#######################################
save 900 1
save 300 10
save 60 10000
dbfilename dump.rdb
notify-keyspace-events K$