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:
parent
862d33b017
commit
b7ea4e9760
6 changed files with 130 additions and 34 deletions
|
|
@ -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
|
||||
];
|
||||
]);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue