diff --git a/roles/nextcloud/templates/config.php.j2 b/roles/nextcloud/templates/config.php.j2 index 094002f..df9d3d3 100644 --- a/roles/nextcloud/templates/config.php.j2 +++ b/roles/nextcloud/templates/config.php.j2 @@ -61,9 +61,19 @@ $CONFIG = array ( 'memcache.distributed' => '\\OC\\Memcache\\Redis', 'memcache.locking' => '\\OC\\Memcache\\Redis', 'redis' => - array ( + array ( 'host' => 'localhost', 'port' => 6379, 'timeout' => 0.0, ), + 'memories.db.triggers.fcu' => true, + 'memories.exiftool_no_local' => true, + 'memories.vod.path' => '/var/lib/nextcloud/apps/memories/bin-ext/go-vod-amd64', + 'memories.vod.ffmpeg' => '/usr/bin/ffmpeg', + 'memories.vod.ffprobe' => '/usr/bin/ffprobe', + 'enabledPreviewProviders' => + array ( + 0 => 'OC\\Preview\\Image', + 1 => 'OC\\Preview\\Movie', + ), );