Initial commit

This commit is contained in:
2023-01-17 22:46:02 +01:00
commit d734b0cc46
14 changed files with 2625 additions and 0 deletions

54
config/config.php Normal file
View File

@@ -0,0 +1,54 @@
<?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,
),
),
'instanceid' => 'ocaaufe11dxs',
'passwordsalt' => 'bvjimFAuj1v3qZARQ2xGy9GWjHoX25',
'secret' => 'pJUD+ZwG9uOrqXzi1kdT1eAJ35ScK4mtE+3rwwDPIRl43lNU',
'trusted_domains' =>
array (
0 => 'cloud.home-ewert.de',
),
'datadirectory' => '/var/www/html/data',
'dbtype' => 'pgsql',
'version' => '25.0.2.3',
'overwrite.cli.url' => 'http://cloud.home-ewert.de',
'dbname' => 'nextcloud',
'dbhost' => 'db',
'dbport' => '',
'dbtableprefix' => 'oc_',
'dbuser' => 'oc_dennis',
'dbpassword' => '6gFZV54BhoId3xbcPAyZ4NYsBzFdpu',
'installed' => true,
'memcache.distributed' => '\\OC\\Memcache\\Redis',
'memcache.locking' => '\\OC\\Memcache\\Redis',
'redis' =>
array (
'host' => 'redis',
'password' => '',
'port' => 6379,
),
'loglevel' => 2,
'maintenance' => false,
'app_install_overwrite' =>
array (
0 => 'unsplash',
1 => 'drawio',
2 => 'caniupdate',
),
'theme' => '',
);