add nextcloud
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/cron/woodpecker Pipeline was successful

This commit is contained in:
nyyu 2023-01-15 10:12:57 +01:00
parent c0f347a14f
commit 54bd3fa8bb
11 changed files with 364 additions and 0 deletions

View file

@ -0,0 +1,17 @@
<?php
$CONFIG = array (
'datadirectory' => '/var/lib/nextcloud/data',
'logfile' => '/var/log/nextcloud/nextcloud.log',
'apps_paths' => [
[
'path'=> '/usr/share/webapps/nextcloud/apps',
'url' => '/apps',
'writable' => false,
],
[
'path'=> '/var/lib/nextcloud/apps',
'url' => '/wapps',
'writable' => true,
],
],
);