summaryrefslogtreecommitdiffstats
path: root/14.0/fpm/config/redis.config.php
diff options
context:
space:
mode:
authorTilo Spannagel <development@tilosp.de>2019-10-01 09:56:14 +0200
committerTilo Spannagel <development@tilosp.de>2019-10-01 09:56:14 +0200
commit5ed523117a25f4ee6fb4538b3d5ccc935be0c057 (patch)
tree8818c4093e9b8169e049bdbbab4d42c9d0507d3d /14.0/fpm/config/redis.config.php
parentc7143feda69e208c41370fc3b40b04438e204424 (diff)
Run update.sh
Signed-off-by: Tilo Spannagel <development@tilosp.de>
Diffstat (limited to '14.0/fpm/config/redis.config.php')
-rw-r--r--14.0/fpm/config/redis.config.php13
1 files changed, 0 insertions, 13 deletions
diff --git a/14.0/fpm/config/redis.config.php b/14.0/fpm/config/redis.config.php
deleted file mode 100644
index 19676160..00000000
--- a/14.0/fpm/config/redis.config.php
+++ /dev/null
@@ -1,13 +0,0 @@
-<?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'),
- ),
- );
-}
-