Stefan Liebl ede996af6e nextcloud
2020-07-09 16:40:55 +02:00

62 lines
1.4 KiB
PHP

<?php
$CONFIG = array (
'trusted_domains' =>
array (
0 => 'localhost:8080',
),
'datadirectory' => '/var/www/html/data',
'dbtype' => 'mysql',
'dbname' => 'nextcloud',
'dbhost' => 'db',
'dbport' => '3306',
'dbtableprefix' => 'nc_',
'mysql.utf8mb4' => true,
'dbuser' => 'nextcloud',
'dbpassword' => 'uCutr9HCpWZA99n',
'installed' => false,
'maintenance' => false,
'memcache.local' => '\\OC\\Memcache\\APCu',
'memcache.distributed' => '\\OC\\Memcache\\Redis',
'memcache.locking' => '\\OC\\Memcache\\Redis',
'redis' =>
array (
'host' => 'redis',
'password' => false,
'port' => 6379,
),
'apps_paths' =>
array (
0 =>
array (
'path' => '/var/www/html/apps',
'url' => '/apps',
'writable' => false,
),
1 =>
array (
'path' => '/var/www/html/custom_apps',
'url' => '/custom_apps',
'writable' => true,
),
),
'loglevel' => 0,
'theme' => '',
'mail_smtpmode' => 'smtp',
'mail_smtpauthtype' => 'LOGIN',
'mail_smtpsecure' => 'tls',
'mail_from_address' => 'abc',
'mail_domain' => 'gmx.de',
'mail_smtphost' => 'mail.gmx.net',
'mail_smtpauth' => 1,
'mail_smtpport' => '587',
'mail_smtpname' => 'abc@gmx.de',
'mail_smtppassword' => 'xxx',
'integrity.check.disabled' => false,
'updatechecker' => true,
'has_internet_connection' => true,
'app_install_overwrite' =>
array (
0 => 'timetracker',
),
);