Added Config Files

This commit is contained in:
2023-01-17 20:53:16 +01:00
parent 854115e510
commit 1a2d6aeb54
11 changed files with 2393 additions and 1 deletions

78
config-files/config.php Normal file
View File

@@ -0,0 +1,78 @@
<?php
$CONFIG = array (
'memcache.local' => '\\OC\\Memcache\\APCu',
'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.distributed' => '\\OC\\Memcache\\Redis',
'memcache.locking' => '\\OC\\Memcache\\Redis',
'redis' =>
array (
'host' => 'redis',
'password' => '',
'port' => 6379,
),
'enabledPreviewProviders' =>
array (
0 => 'OC\\Preview\\MP3',
1 => 'OC\\Preview\\TXT',
2 => 'OC\\Preview\\MarkDown',
3 => 'OC\\Preview\\OpenDocument',
4 => 'OC\\Preview\\Krita',
5 => 'OC\\Preview\\Imaginary',
),
'preview_imaginary_url' => 'http://imaginary:9000',
'instanceid' => 'ocju46t620tn',
'passwordsalt' => 'vB2Bg+/SQPwD1/7FOtR/rLNs+nxMm6',
'secret' => 'ENBKCofw9/ICFEO6CmPC2DRtNDRJ6aRFkfF/g+DpgkgW1OdL',
'trusted_domains' =>
array (
0 => 'cloudlorean.de',
1 => '192.168.212.60',
2 => '192.168.212.50',
),
'trusted_proxies' =>
array (
0 => '192.168.212.50',
1 => '2a0e:b680:3c:1::50',
),
'trashbin_retention_obligation' => '15, 30',
'datadirectory' => '/var/www/html/data',
'skeletondirectory' => '',
'dbtype' => 'pgsql',
'version' => '25.0.2.3',
'overwrite.cli.url' => 'http://cloudlorean.de',
'overwriteprotocol' => 'https',
'dbname' => 'nextcloud',
'dbhost' => 'db',
'dbport' => '',
'dbtableprefix' => 'oc_',
'dbuser' => 'oc_derlinkman',
'dbpassword' => 'JvVDybFjEJCZsTfAWn4FKtybY8NebN',
'installed' => true,
'maintenance' => false,
'default_language' => 'de',
'default_locale' => 'de_DE',
'default_phone_region' => 'DE',
'mail_smtpmode' => 'smtp',
'mail_smtpsecure' => 'tls',
'mail_sendmailmode' => 'smtp',
'mail_from_address' => 'noreply',
'mail_domain' => 'cloudlorean.de',
'mail_smtphost' => 'mail.cloudlorean.de',
'mail_smtpport' => '587',
'loglevel' => 2,
'theme' => '',
);