You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
420 B
18 lines
420 B
redis_user: redis
|
|
redis_group: redis
|
|
redis_conf_dir: /etc/redis
|
|
redis_conf_file: "{{ redis_conf_dir }}/redis.conf"
|
|
|
|
redis_default_config:
|
|
bind:
|
|
- "127.0.0.1"
|
|
- "-::1"
|
|
protected-mode: yes
|
|
port: "0"
|
|
unixsocket: "{{ redis_unix_socket | d('/run/redis/redis.sock') }}"
|
|
unixsocketperm: 777
|
|
dir: /var/lib/redis
|
|
syslog-enabled: yes
|
|
crash-log-enabled: no
|
|
maxmemory: 96M
|
|
maxmemory-policy: volatile-ttl
|
|
|