1
0
Fork 0
mirror of https://codeberg.org/icewind/haze.git synced 2026-06-03 09:04:12 +02:00

allow configuring additional app directories and add a writable app directory

fixes #15
This commit is contained in:
Robin Appelman 2026-03-05 23:27:54 +01:00
commit b7ea4e9760
6 changed files with 130 additions and 34 deletions

View file

@ -1,4 +1,12 @@
<?php $CONFIG=[
<?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',
@ -9,4 +17,4 @@
'profiling.secret' => 'haze',
'profiling.path' => '/tmp/profiling',
//PLACEHOLDER
];
]);