31 lines
928 B
PHP
31 lines
928 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" => "/opt/nextcloud/apps",
|
|
"url" => "/apps",
|
|
"writable" => false,
|
|
],
|
|
[
|
|
"path" => "/var/lib/nextcloud/.userapps",
|
|
"url" => "/userapps",
|
|
"writable" => true,
|
|
],
|
|
],
|
|
"cache_path" => "/var/lib/nextcloud/.cache",
|
|
"upgrade.disable-web" => true,
|
|
"memcache.local" => "\\OC\\Memcache\\Redis",
|
|
"memcache.locking" => "\\OC\\Memcache\\Redis",
|
|
"memcache.distributed" => "\OC\Memcache\Redis",
|
|
"redis" => [
|
|
"host" => "/var/run/redis-nextcloud/redis.sock",
|
|
],
|
|
);
|