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
53
box/provisioning/roles/geerlingguy.redis/defaults/main.yml
Normal file
53
box/provisioning/roles/geerlingguy.redis/defaults/main.yml
Normal file
|
@ -0,0 +1,53 @@
|
|||
---
|
||||
# Used for RHEL/CentOS/Fedora only. Allows the use of different repos.
|
||||
redis_enablerepo: epel
|
||||
|
||||
redis_port: 6379
|
||||
redis_bind_interface: 127.0.0.1
|
||||
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
|
Loading…
Add table
Add a link
Reference in a new issue