summaryrefslogtreecommitdiffstats
path: root/18.0-rc/fpm-alpine/config/redis.config.php
blob: 1967616093a5ebda067899cd09315bd0c5d7be8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?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'),
    ),
  );
}