docker-nextcloud/20/fpm/config/redis.config.php

18 lines
484 B
PHP
Raw Normal View History

2020-10-03 10:59:35 +02:00
<?php
if (getenv('REDIS_HOST')) {
2020-11-07 01:36:28 +01:00
$CONFIG = array(
2020-10-03 10:59:35 +02:00
'memcache.distributed' => '\OC\Memcache\Redis',
'memcache.locking' => '\OC\Memcache\Redis',
'redis' => array(
'host' => getenv('REDIS_HOST'),
2020-11-07 01:36:28 +01:00
'password' => (string) getenv('REDIS_HOST_PASSWORD'),
2020-10-03 10:59:35 +02:00
),
);
if (getenv('REDIS_HOST_PORT') !== false) {
$CONFIG['redis']['port'] = (int) getenv('REDIS_HOST_PORT');
} elseif (getenv('REDIS_HOST')[0] != '/') {
$CONFIG['redis']['port'] = 6379;
}
}