22 lines
260 B
Plaintext
22 lines
260 B
Plaintext
# Redis configuration
|
|
|
|
# Network
|
|
bind 0.0.0.0
|
|
protected-mode yes
|
|
port 6379
|
|
|
|
# Memory
|
|
maxmemory 256mb
|
|
maxmemory-policy allkeys-lru
|
|
|
|
# Persistence
|
|
save 900 1
|
|
save 300 10
|
|
save 60 10000
|
|
|
|
# Logging
|
|
loglevel notice
|
|
|
|
# Security
|
|
# requirepass your-redis-password-here
|