summaryrefslogtreecommitdiffstats
path: root/17.0-rc/fpm/config/redis.config.php
diff options
context:
space:
mode:
authorTilo Spannagel <development@tilosp.de>2020-03-06 18:30:35 +0100
committerGitHub <noreply@github.com>2020-03-06 18:30:35 +0100
commit6c1044fef4482e6b2303e850c12befa1a4edc666 (patch)
treea83c7cb0d9397d8ff430cceb570575031f22db16 /17.0-rc/fpm/config/redis.config.php
parentac8c9984319e45fd34fa3863f82fd9063d628aa4 (diff)
parentda5b3bed1f02ec43901f17b524ed2d2b124d3f6c (diff)
Merge pull request #1020 from tilosp/bot/update
Add nextcloud 16.0.9RC1, 17.0.4RC1 and 18.0.2RC1
Diffstat (limited to '17.0-rc/fpm/config/redis.config.php')
-rw-r--r--17.0-rc/fpm/config/redis.config.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/17.0-rc/fpm/config/redis.config.php b/17.0-rc/fpm/config/redis.config.php
new file mode 100644
index 00000000..9429c901
--- /dev/null
+++ b/17.0-rc/fpm/config/redis.config.php
@@ -0,0 +1,17 @@
+<?php
+if (getenv('REDIS_HOST')) {
+ $CONFIG = array (
+ 'memcache.distributed' => '\OC\Memcache\Redis',
+ 'memcache.locking' => '\OC\Memcache\Redis',
+ 'redis' => array(
+ 'host' => getenv('REDIS_HOST'),
+ 'password' => getenv('REDIS_HOST_PASSWORD'),
+ ),
+ );
+
+ if (getenv('REDIS_HOST_PORT') !== false) {
+ $CONFIG['redis']['port'] = (int) getenv('REDIS_HOST_PORT');
+ } elseif (getenv('REDIS_HOST')[0] != '/') {
+ $CONFIG['redis']['port'] = 6379;
+ }
+}