- Reorganize Authelia configuration files - Add new dynamic routing files for Traefik - Update various service docker-compose files - Remove outdated templates and scripts
43 lines
768 B
Plaintext
43 lines
768 B
Plaintext
# Redis Configuration Template
|
|
# Copy this file to ./config/redis/redis.conf
|
|
|
|
# Network
|
|
bind 0.0.0.0
|
|
protected-mode yes
|
|
port 6379
|
|
|
|
# General
|
|
daemonize no
|
|
supervised no
|
|
pidfile /var/run/redis_6379.pid
|
|
loglevel notice
|
|
logfile ""
|
|
|
|
# Persistence - AOF (Append Only File)
|
|
appendonly yes
|
|
appendfilename "appendonly.aof"
|
|
appendfsync everysec
|
|
no-appendfsync-on-rewrite no
|
|
auto-aof-rewrite-percentage 100
|
|
auto-aof-rewrite-min-size 64mb
|
|
|
|
# Persistence - RDB (Snapshotting)
|
|
save 900 1
|
|
save 300 10
|
|
save 60 10000
|
|
stop-writes-on-bgsave-error yes
|
|
rdbcompression yes
|
|
rdbchecksum yes
|
|
dbfilename dump.rdb
|
|
dir /data
|
|
|
|
# Memory Management
|
|
maxmemory 256mb
|
|
maxmemory-policy allkeys-lru
|
|
|
|
# Security
|
|
# requirepass yourpassword # Uncomment and set a strong password
|
|
|
|
# Limits
|
|
maxclients 10000
|