self-hosting/roles/nextcloud-docker/files/nextcloud/config/redis.config.php

11 lines
186 B
PHP
Raw Normal View History

2018-01-10 20:11:08 +01:00
<?php
$CONFIG = array (
'memcache.local' => '\OC\Memcache\Redis',
2018-01-10 20:11:08 +01:00
'memcache.locking' => '\OC\Memcache\Redis',
'redis' => array(
'host' => 'redis',
'port' => 6379,
),
);