self-hosting/roles/nextcloud-docker/files/nextcloud/config/redis.config.php
2018-01-12 01:37:27 +01:00

10 lines
186 B
PHP

<?php
$CONFIG = array (
'memcache.local' => '\OC\Memcache\Redis',
'memcache.locking' => '\OC\Memcache\Redis',
'redis' => array(
'host' => 'redis',
'port' => 6379,
),
);