changed role to webservers due to conflicting with hostnames
This commit is contained in:
60
roles/webservers/templates/nextcloud/config.php.j2
Normal file
60
roles/webservers/templates/nextcloud/config.php.j2
Normal file
@@ -0,0 +1,60 @@
|
||||
<?php
|
||||
$CONFIG = array (
|
||||
'instanceid' => '{{ instanceid }}',
|
||||
'passwordsalt' => '{{ passwordsalt }}',
|
||||
'trusted_domains' =>
|
||||
array (
|
||||
0 => 'tantooine.myfirewall.org',
|
||||
1 => 'geonosis.universe.local',
|
||||
2 => 'geonosis',
|
||||
),
|
||||
'datadirectory' => '/Daten/owncloud/data/',
|
||||
'dbtype' => 'mysql',
|
||||
'version' => '24.0.2.1',
|
||||
'dbname' => '{{ dbname }}',
|
||||
'dbhost' => '{{ dbhost }}',
|
||||
'dbtableprefix' => '{{ dbtableprefix }}',
|
||||
'dbuser' => '{{ dbuser }}',
|
||||
'dbpassword' => '{{ dbpassword }}',
|
||||
'default_phone_region' => 'DE',
|
||||
'installed' => true,
|
||||
'theme' => '',
|
||||
'maintenance' => true,
|
||||
'secret' => '{{ secret }}',
|
||||
'ldapIgnoreNamingRules' => false,
|
||||
'forcessl' => true,
|
||||
'forceSSLforSubdomains' => true,
|
||||
'overwrite.cli.url' => 'https://tantooine.myfirewall.org/nextcloud',
|
||||
'mail_smtpmode' => 'smtp',
|
||||
'mail_from_address' => '{{ mail_from_address }}',
|
||||
'mail_domain' => '{{ mail_domain }}',
|
||||
'mail_smtphost' => '{{ mail_smtphost }}',
|
||||
'mail_smtpport' => '{{ mail_smtpport }}',
|
||||
'has_internet_connection' => true,
|
||||
'updatechecker' => true,
|
||||
'memcache.local' => '\\OC\\Memcache\\APCu',
|
||||
'check_for_working_htaccess' => true,
|
||||
'loglevel' => 0,
|
||||
'log_rotate_size' => 104857600,
|
||||
'trashbin_retention_obligation' => 'auto, auto',
|
||||
'updater.release.channel' => 'stable',
|
||||
'ldapProviderFactory' => '\\OCA\\User_LDAP\\LDAPProviderFactory',
|
||||
'mail_smtpauthtype' => 'LOGIN',
|
||||
'integrity.check.disabled' => true,
|
||||
'redis' =>
|
||||
array (
|
||||
'host' => 'localhost',
|
||||
'port' => '6379',
|
||||
'timeout' => 1.5,
|
||||
),
|
||||
'mysql.utf8mb4' => true,
|
||||
'app_install_overwrite' =>
|
||||
array (
|
||||
0 => 'calendar',
|
||||
1 => 'tasks',
|
||||
2 => 'ocsms',
|
||||
3 => 'files_readmemd',
|
||||
),
|
||||
'encryption.legacy_format_support' => false,
|
||||
'encryption.key_storage_migrated' => false,
|
||||
);
|
||||
Reference in New Issue
Block a user