2020-02-09 15:21:48 +00:00
|
|
|
<?php
|
|
|
|
$CONFIG = array (
|
|
|
|
'memcache.local' => '\\OC\\Memcache\\APCu',
|
|
|
|
'memcache.locking' => '\\OC\\Memcache\\Redis',
|
|
|
|
'memcache.distributed' => '\\OC\\Memcache\\Redis',
|
|
|
|
'filelocking.enabled' => true,
|
|
|
|
'redis' =>
|
|
|
|
array (
|
|
|
|
'host' => 'redis',
|
|
|
|
'port' => 6379,
|
|
|
|
'timeout' => 0.0,
|
|
|
|
),
|
|
|
|
'datadirectory' => '/data',
|
|
|
|
'instanceid' => '{{ nextcloud.instance_id }}',
|
|
|
|
'passwordsalt' => '{{ nextcloud.passwordsalt }}',
|
|
|
|
'secret' => '{{ nextcloud.secret }}',
|
|
|
|
'trusted_domains' =>
|
|
|
|
array (
|
|
|
|
0 => 'intersect.jakehoward.tech',
|
|
|
|
),
|
|
|
|
'dbtype' => 'mysql',
|
2020-02-17 13:03:18 +00:00
|
|
|
'version' => '18.0.1.3',
|
2020-02-09 15:21:48 +00:00
|
|
|
'overwrite.cli.url' => 'https://intersect.jakehoward.tech',
|
|
|
|
'dbname' => 'nextcloud',
|
|
|
|
'dbhost' => 'mariadb:3306',
|
|
|
|
'dbport' => '',
|
|
|
|
'dbtableprefix' => 'oc_',
|
|
|
|
'mysql.utf8mb4' => true,
|
|
|
|
'dbuser' => 'nextcloud',
|
|
|
|
'dbpassword' => 'nextcloud',
|
|
|
|
'installed' => true,
|
|
|
|
'trusted_proxies' =>
|
|
|
|
array (
|
|
|
|
0 => '10.23.0.1/24',
|
|
|
|
),
|
|
|
|
'maintenance' => false,
|
2020-02-17 13:03:18 +00:00
|
|
|
'theme' => '',
|
|
|
|
'loglevel' => 2,
|
2020-02-09 15:21:48 +00:00
|
|
|
);
|