Add all files needed to bring up VM and run agaric.com locally
This commit is contained in:
parent
52c8b60bac
commit
4d2bc0ee24
742 changed files with 24037 additions and 0 deletions
|
@ -0,0 +1,55 @@
|
|||
# {{ ansible_managed }}
|
||||
|
||||
daemonize yes
|
||||
pidfile /var/run/redis/{{ redis_daemon }}.pid
|
||||
port {{ redis_port }}
|
||||
bind {{ redis_bind_interface }}
|
||||
|
||||
{% if redis_unixsocket %}
|
||||
unixsocket {{ redis_unixsocket }}
|
||||
{% endif %}
|
||||
|
||||
timeout {{ redis_timeout }}
|
||||
|
||||
loglevel {{ redis_loglevel }}
|
||||
logfile {{ redis_logfile }}
|
||||
|
||||
# To enable logging to the system logger, just set 'syslog-enabled' to yes,
|
||||
# and optionally update the other syslog parameters to suit your needs.
|
||||
# syslog-enabled no
|
||||
# syslog-ident redis
|
||||
# syslog-facility local0
|
||||
|
||||
databases {{ redis_databases }}
|
||||
|
||||
{% for save in redis_save %}
|
||||
save {{ save }}
|
||||
{% endfor %}
|
||||
|
||||
rdbcompression {{ redis_rdbcompression }}
|
||||
dbfilename {{ redis_dbfilename }}
|
||||
dir {{ redis_dbdir }}
|
||||
|
||||
# maxclients 128
|
||||
|
||||
{% if redis_maxmemory %}
|
||||
maxmemory {{ redis_maxmemory }}
|
||||
maxmemory-policy {{ redis_maxmemory_policy }}
|
||||
maxmemory-samples {{ redis_maxmemory_samples }}
|
||||
{% endif %}
|
||||
|
||||
appendonly {{ redis_appendonly }}
|
||||
appendfsync {{ redis_appendfsync }}
|
||||
no-appendfsync-on-rewrite no
|
||||
|
||||
{% for include in redis_includes %}
|
||||
include {{ include }}
|
||||
{% endfor %}
|
||||
|
||||
{% if redis_requirepass %}
|
||||
requirepass {{ redis_requirepass }}
|
||||
{% endif %}
|
||||
|
||||
{% for redis_disabled_command in redis_disabled_commands %}
|
||||
rename-command {{ redis_disabled_command }} ""
|
||||
{% endfor %}
|
Loading…
Add table
Add a link
Reference in a new issue