mirror of
https://github.com/nextcloud/docker.git
synced 2025-05-05 08:10:55 +02:00
Run update.sh
Signed-off-by: Tilo Spannagel <development@tilosp.de>
This commit is contained in:
parent
b7e9458648
commit
60622a729b
26 changed files with 1018 additions and 1 deletions
12
16.0-alpha/apache/config/redis.config.php
Normal file
12
16.0-alpha/apache/config/redis.config.php
Normal file
|
@ -0,0 +1,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_HOST_PORT') ?: 6379,
|
||||
),
|
||||
);
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue