mirror of
https://codeberg.org/icewind/haze.git
synced 2026-06-03 09:04:12 +02:00
20 lines
591 B
PHP
20 lines
591 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,
|
|
'appstoreenabled' => false,
|
|
'memcache.local' => '\\OC\\Memcache\\APCu',
|
|
'memcache.distributed' => '\\OC\\Memcache\\APCu',
|
|
'memcache.locking' => '\\OC\\Memcache\\APCu',
|
|
'allow_local_remote_servers' => true,
|
|
'trusted_domains' => ['cloud'],
|
|
'profiling.secret' => 'haze',
|
|
'profiling.path' => '/tmp/profiling',
|
|
//PLACEHOLDER
|
|
]);
|