1
0
mirror of https://github.com/nextcloud/docker.git synced 2025-11-03 09:51:36 +01:00
nextcloud_docker/16.0/apache/config/redis.config.php
J0WI abe7b70052 Run update.sh
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
2019-04-26 13:27:26 +02:00

13 lines
280 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_HOST_PORT') ?: 6379,
),
);
}