bundlewrap/bundles/nextcloud/files/managed.config.php
mwiegand db2ace238d wip
2021-06-20 23:55:42 +02:00

19 lines
550 B
PHP

<?php
# https://docs.nextcloud.com/server/stable/admin_manual/configuration_server/config_sample_php_parameters.html#multiple-config-php-file
$CONFIG = array (
'dbuser' => 'nextcloud',
'dbpassword' => '${db_password}',
'dbname' => 'nextcloud',
'dbhost' => 'localhost',
'dbtype' => 'pgsql',
'datadirectory' => '/var/lib/nextcloud',
'dbport' => '5432',
'apps_paths' => [
[
'path'=> '/var/lib/nextcloud/.apps',
'url' => '/userapps',
'writable' => true,
],
],
'cache_path' => '/var/lib/nextcloud/.cache',
);