You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
973 B
38 lines
973 B
<?php
|
|
$CONFIG = array(
|
|
|
|
/** Setup **/
|
|
'datadirectory' => '/srv/nextcloud/files/',
|
|
'htaccess.RewriteBase' => '/',
|
|
|
|
/** Database **/
|
|
'dbtype' => 'pgsql',
|
|
'dbname' => 'nextcloud',
|
|
'dbuser' => 'ncadmin',
|
|
'dbpassword' => '',
|
|
'dbhost' => '/var/run/postgresql',
|
|
'dbtableprefix' => 'oc_',
|
|
|
|
/** Network **/
|
|
'trusted_domains' =>
|
|
array (
|
|
0 => 'nextcloud.lxd',
|
|
),
|
|
'overwriteprotocol' => 'http',
|
|
'overwritehost' => 'medusa.casa.alemor.org',
|
|
'overwritewebroot' => '/nextcloud',
|
|
'overwrite.cli.url' => 'http://medusa.casa.alemor.org/nextcloud/',
|
|
|
|
/** Memory Caching **/
|
|
'memcache.local' => '\\OC\\Memcache\\Redis',
|
|
'memcache.distributed' => '\\OC\\Memcache\\Redis',
|
|
'memcache.locking' => '\\OC\\Memcache\\Redis',
|
|
'filelocking.enabled' => 'true',
|
|
'redis' =>
|
|
array (
|
|
'host' => '/var/run/redis/redis-server.sock',
|
|
'port' => 0,
|
|
'timeout' => 0.0,
|
|
),
|
|
|
|
);
|
|
|