Release 10.0.0 #100

Manually merged
jlecour merged 321 commits from unstable into stable 2020-05-13 11:25:49 +02:00
3 changed files with 6 additions and 1 deletions
Showing only changes of commit 6db519c2b0 - Show all commits

View file

@ -16,6 +16,7 @@ The **patch** part changes incrementally at each release.
* php: variable to install the mysqlnd module instead of the default mysql module
* packweb-apache: Deploy opcache.php to give some insights on PHP's opcache status
* webapps/evoadmin-web Overload templates if needed
* redis: max clients is configurable
### Changed
* elasticsearch: listen on local interface only by default

View file

@ -29,6 +29,8 @@ redis_rdbcompression: "yes"
redis_dbfilename: dump.rdb
redis_dbdir: /var/lib/redis
redis_maxclients: 128
redis_maxmemory: 0
redis_maxmemory_policy: "noeviction"
redis_maxmemory_samples: 5

View file

@ -40,7 +40,9 @@ dir {{ redis_dbdir }}
protected-mode {{ redis_protected_mode }}
{% endif %}
# maxclients 128
{% if redis_maxclients %}
maxclients {{ redis_maxclients }}
{% endif %}
{% if redis_maxmemory %}
maxmemory {{ redis_maxmemory }}