ansible-roles/memcached/README.md

20 lines
584 B
Markdown
Raw Normal View History

2017-10-03 23:45:17 +02:00
# Memcached
2017-03-02 14:57:41 +01:00
Installation and basic configuration of memcached
## Tasks
Minimal configuration is in `tasks/main.yml`
## Available variables
2017-04-05 10:29:03 +02:00
Main variables are :
* `memcached_mem`: amount of memory (default: `64`) ;
* `memcached_user`: running user (default: `nobody`) ;
* `memcached_port`: opened port (default: `11211`) ;
* `memcached_bind_interface`: interface to listen to (default: `127.0.0.1`) ;
* `memcached_connections`: number of simultaneous incoming connections (default: `1024`) ;
2017-04-05 10:29:03 +02:00
2017-03-02 14:57:41 +01:00
The full list of variables (with default values) can be found in `defaults/main.yml`.