mirror of
https://github.com/YunoHost-Apps/nextcloud_ynh.git
synced 2024-09-03 19:55:57 +02:00
Enable Redis use for file locking
https://docs.nextcloud.com/server/12.0/admin_manual/configuration_server/caching_configuration.html#small-organization-single-server-setup
This commit is contained in:
parent
2c92e58014
commit
57c8122f4a
2 changed files with 47 additions and 39 deletions
|
@ -7,7 +7,15 @@
|
|||
],
|
||||
"updatechecker": false,
|
||||
"memcache.local": "\\OC\\Memcache\\APCu",
|
||||
"integrity.check.disabled": true
|
||||
"integrity.check.disabled": true,
|
||||
"filelocking.enabled": true,
|
||||
"memcache.locking": "\\OC\\Memcache\\Redis",
|
||||
"redis": {
|
||||
"host": "localhost",
|
||||
"port": "6379",
|
||||
"timeout": "0.0",
|
||||
"password": ""
|
||||
}
|
||||
},
|
||||
"apps": {
|
||||
"user_ldap": {
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# COMMON VARIABLES
|
||||
#=================================================
|
||||
|
||||
pkg_dependencies="php5-gd php5-json php5-intl php5-mcrypt php5-curl php5-apcu php5-imagick imagemagick acl tar smbclient"
|
||||
pkg_dependencies="php5-gd php5-json php5-intl php5-mcrypt php5-curl php5-apcu php5-redis php5-imagick imagemagick acl tar smbclient"
|
||||
|
||||
#=================================================
|
||||
# COMMON HELPERS
|
||||
|
|
Loading…
Add table
Reference in a new issue