0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2024-09-30 00:12:36 +02:00
nextcloud-docker/.config/redis.config.php
marceljd d1db681058 Update redis.config.php
Signed-off-by: marceljd <support@dihosting.ch>
2019-01-27 13:46:25 +00:00

12 lines
274 B
PHP

<?php
if (getenv('REDIS_HOST')) {
$CONFIG = array (
'memcache.distributed' => '\OC\Memcache\Redis',
'memcache.locking' => '\OC\Memcache\Redis',
'redis' => array(
'host' => getenv('REDIS_HOST'),
'port' => getenv('REDIS_PORT')?: 6379,
),
);
}