21 lines
421 B
Plaintext
21 lines
421 B
Plaintext
bind 127.0.0.1 100.90.90.91
|
|
protected-mode yes
|
|
port 6379
|
|
unixsocket /run/redis/redis-server.sock
|
|
unixsocketperm 770
|
|
dir /var/lib/redis
|
|
dbfilename dump.rdb
|
|
appendonly yes
|
|
appendfilename "appendonly.aof"
|
|
appenddirname "appendonlydir"
|
|
appendfsync everysec
|
|
save ""
|
|
save 900 1
|
|
save 300 10
|
|
save 60 10000
|
|
stop-writes-on-bgsave-error yes
|
|
maxmemory 1536mb
|
|
maxmemory-policy noeviction
|
|
tcp-keepalive 60
|
|
aclfile /etc/redis/users.acl
|