summaryrefslogtreecommitdiffstats
path: root/.config/redis.config.php
blob: 8f4b7ec73f5c23c3f6ccb626a04ad944bee86685 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
if (getenv('REDIS_HOST')) {
  $CONFIG = array (
    'memcache.distributed' => '\OC\Memcache\Redis',
    'memcache.locking' => '\OC\Memcache\Redis',
    'redis' => array(
      'host' => getenv('REDIS_HOST'),
    ),
  );
}