aboutsummaryrefslogtreecommitdiffstats
path: root/community/nextcloud/nextcloud-config.php
diff options
context:
space:
mode:
Diffstat (limited to 'community/nextcloud/nextcloud-config.php')
-rw-r--r--community/nextcloud/nextcloud-config.php17
1 files changed, 16 insertions, 1 deletions
diff --git a/community/nextcloud/nextcloud-config.php b/community/nextcloud/nextcloud-config.php
index 957df795f3..09a74cf41b 100644
--- a/community/nextcloud/nextcloud-config.php
+++ b/community/nextcloud/nextcloud-config.php
@@ -1,5 +1,20 @@
<?php
$CONFIG = array (
'datadirectory' => '/var/lib/nextcloud/data',
- 'logfile' => '/var/log/nextcloud/nextcloud.log'
+ 'logfile' => '/var/log/nextcloud/nextcloud.log',
+ 'apps_paths' => array (
+ // Read-only location for apps shipped with Nextcloud and installed by apk.
+ 0 => array (
+ 'path' => '/usr/share/webapps/nextcloud/apps',
+ 'url' => '/apps',
+ 'writable' => false,
+ ),
+ // Writable location for apps installed from AppStore.
+ 1 => array (
+ 'path' => '/var/lib/nextcloud/apps',
+ 'url' => '/apps-appstore',
+ 'writable' => true,
+ ),
+ ),
+ 'installed' => false,
);