Mauro Torrez c07fa0c283
Some checks failed
continuous-integration/drone/push Build is failing
update unit to 1.12, serve multiple ports
2019-10-11 19:17:27 -03:00

14 lines
331 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,
'password' => getenv('REDIS_HOST_PASSWORD'),
),
);
}