1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- ---
- redis_port: 6379
- redis_bind_interface: "0.0.0.0" # overload from role
- redis_unixsocket: ''
- redis_timeout: 300
- redis_loglevel: "notice"
- redis_logfile: /var/log/redis/redis-server.log
- redis_databases: 16
- # Set to an empty set to disable persistence (saving the DB to disk).
- redis_save:
- - 900 1
- - 300 10
- - 60 10000
- redis_rdbcompression: "yes"
- redis_dbfilename: dump.rdb
- redis_dbdir: /var/lib/redis
- redis_maxmemory: 0
- redis_maxmemory_policy: "noeviction"
- redis_maxmemory_samples: 5
- redis_appendonly: "no"
- redis_appendfsync: "everysec"
- # Add extra include files for local configuration/overrides.
- redis_includes: []
- # Require authentication to Redis with a password.
- redis_requirepass: ""
- # Disable certain Redis commands for security reasons.
- redis_disabled_commands: []
- # - FLUSHDB
- # - FLUSHALL
- # - KEYS
- # - PEXPIRE
- # - DEL
- # - CONFIG
- # - SHUTDOWN
- # - BGREWRITEAOF
- # - BGSAVE
- # - SAVE
- # - SPOP
- # - SREM
- # - RENAME
- # - DEBUG
|