package-pipeline-nextcloud/nextcloud-27/config.php
s3lph f02435f2fa
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
feat: initial commit, split off nextcloud packages from s3lph/package-pipeline
2023-11-11 07:05:59 +01:00

26 lines
530 B
PHP

<?php
$CONFIG = array (
'installed' => false,
'trusted_domains' => [
'nextcloud.example.com'
],
'overwrite.cli.url' => 'http://nextcloud.example.com',
'datadirectory' => '/var/lib/nextcloud/data',
'logfile' => '/var/log/nextcloud/nextcloud.log',
'mysql.utf8mb4' => true,
'connectivity_check_domains' => ['localhost'],
'appstoreenabled' => false,
'apps_paths' => [
[
'path'=> '/usr/lib/nextcloud/nextcloud-apps',
'url' => '/dist-apps',
'writable' => false,
]
],
);