fix
This commit is contained in:
@@ -21,6 +21,19 @@ data:
|
||||
'trusted_proxies' => array('10.244.0.0/16','2001:cafe:42::1'),
|
||||
'allow_local_remote_servers' => true,
|
||||
);
|
||||
redis.config.php: |-
|
||||
<?php
|
||||
if (getenv('REDIS_HOST')) {
|
||||
$CONFIG = array (
|
||||
'filelocking.enabled' => true,
|
||||
'memcache.distributed' => '\OC\Memcache\Redis',
|
||||
'memcache.locking' => '\OC\Memcache\Redis',
|
||||
'redis' => array(
|
||||
'host' => getenv('REDIS_HOST'),
|
||||
'port' => getenv('REDIS_HOST_PORT') ?: 6379,
|
||||
),
|
||||
);
|
||||
}
|
||||
.htaccess: |-
|
||||
# line below if for Apache 2.4
|
||||
<ifModule mod_authz_core.c>
|
||||
|
||||
Reference in New Issue
Block a user