4 changed files with 20 additions and 29 deletions
@ -0,0 +1,13 @@ |
|||||
|
<?php |
||||
|
$CONFIG = array( |
||||
|
'memcache.local' => '\\OC\\Memcache\\Redis', |
||||
|
'memcache.distributed' => '\\OC\\Memcache\\Redis', |
||||
|
'memcache.locking' => '\\OC\\Memcache\\Redis', |
||||
|
'filelocking.enabled' => 'true', |
||||
|
'redis' => |
||||
|
array ( |
||||
|
'host' => '/var/run/redis/redis-server.sock', |
||||
|
'port' => 0, |
||||
|
'timeout' => 0.0, |
||||
|
), |
||||
|
); |
@ -0,0 +1,4 @@ |
|||||
|
<?php |
||||
|
$CONFIG = array( |
||||
|
'htaccess.RewriteBase' => '/', |
||||
|
); |
@ -1,28 +0,0 @@ |
|||||
<?php |
|
||||
$CONFIG = array( |
|
||||
|
|
||||
/** Basic **/ |
|
||||
'htaccess.RewriteBase' => '/', |
|
||||
|
|
||||
/** Network **/ |
|
||||
'trusted_domains' => |
|
||||
array ( |
|
||||
0 => 'medusa.alemor.org', |
|
||||
), |
|
||||
'overwriteprotocol' => 'https', |
|
||||
'overwritehost' => 'medusa.alemor.org', |
|
||||
'overwritewebroot' => '/nextcloud', |
|
||||
'overwrite.cli.url' => 'https://medusa.alemor.org/nextcloud/', |
|
||||
|
|
||||
/** Memory Caching **/ |
|
||||
'memcache.local' => '\\OC\\Memcache\\Redis', |
|
||||
'memcache.distributed' => '\\OC\\Memcache\\Redis', |
|
||||
'memcache.locking' => '\\OC\\Memcache\\Redis', |
|
||||
'filelocking.enabled' => 'true', |
|
||||
'redis' => |
|
||||
array ( |
|
||||
'host' => '/var/run/redis/redis-server.sock', |
|
||||
'port' => 0, |
|
||||
'timeout' => 0.0, |
|
||||
), |
|
||||
); |
|
Loading…
Reference in new issue