mirror of
https://codeberg.org/icewind/haze.git
synced 2026-06-04 01:24:09 +02:00
19 lines
561 B
PHP
19 lines
561 B
PHP
<?php
|
|
|
|
$extra_config = [];
|
|
if (file_exists(__DIR__ . '/nextcloud.json')) {
|
|
$extra_config = json_decode(file_get_contents(__DIR__ . '/nextcloud.json'), true);
|
|
}
|
|
|
|
|
|
$CONFIG = array_merge_recursive($extra_config, [
|
|
'debug' => true,
|
|
'memcache.local' => '\\OC\\Memcache\\APCu',
|
|
'memcache.distributed' => '\\OC\\Memcache\\Redis',
|
|
'memcache.locking' => '\\OC\\Memcache\\Redis',
|
|
'allow_local_remote_servers' => true,
|
|
'trusted_domains' => ['cloud'],
|
|
'profiling.secret' => 'haze',
|
|
'profiling.path' => '/tmp/profiling',
|
|
//PLACEHOLDER
|
|
]);
|