You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
677 B
28 lines
677 B
<?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,
|
|
),
|
|
);
|
|
|