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