mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 21:57:00 +01:00
61 lines
1.5 KiB
PHP
61 lines
1.5 KiB
PHP
<?php
|
|
$CONFIG = array (
|
|
'instanceid' => 'ocbsz7gnyjst',
|
|
'passwordsalt' => '{{nextcloud_passwordsalt}}',
|
|
'secret' => '{{nextcloud_secret}}',
|
|
'trusted_domains' =>
|
|
array (
|
|
0 => 'localhost',
|
|
1 => 'web',
|
|
2 => 'cloud.banditlair.com',
|
|
),
|
|
'datadirectory' => '/var/www/html/data',
|
|
'overwrite.cli.url' => 'https://cloud.banditlair.com',
|
|
'dbtype' => 'mysql',
|
|
'version' => '13.0.2.1',
|
|
'dbname' => 'nextcloud',
|
|
'dbhost' => 'db',
|
|
'dbport' => '3306',
|
|
'dbtableprefix' => 'oc_',
|
|
'dbuser' => 'nextcloud',
|
|
'dbpassword' => '{{nextcloud_mysql_password}}',
|
|
'installed' => true,
|
|
'htaccess.RewriteBase' => '/',
|
|
'maintenance' => false,
|
|
'updater.release.channel' => 'stable',
|
|
'loglevel' => '1',
|
|
'mail_smtpmode' => 'smtp',
|
|
'mail_smtpauthtype' => 'PLAIN',
|
|
'mail_smtpsecure' => 'ssl',
|
|
'mail_smtpauth' => 1,
|
|
'mail_from_address' => 'noreply',
|
|
'mail_domain' => 'banditlair.com',
|
|
'mail_smtphost' => 'mail.banditlair.com',
|
|
'mail_smtpport' => '465',
|
|
'mail_smtpname' => 'noreply@banditlair.com',
|
|
'mail_smtppassword' => '{{email_password}}',
|
|
'filelocking.enabled' => true,
|
|
'memcache.local' => '\\OC\\Memcache\\Redis',
|
|
'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,
|
|
),
|
|
),
|
|
'memcache.locking' => '\\OC\\Memcache\\Redis',
|
|
'redis' =>
|
|
array (
|
|
'host' => 'redis',
|
|
'port' => 6379,
|
|
),
|
|
'theme' => '',
|
|
);
|