19 lines
550 B
PHP
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',
|
|
);
|