From 1063f49c7485e1e63c0b4b94aecf8d48c471f141 Mon Sep 17 00:00:00 2001 From: Christopher Berger Date: Thu, 28 May 2026 20:07:23 +0000 Subject: [PATCH] Add config.php --- config.php | 74 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 config.php diff --git a/config.php b/config.php new file mode 100644 index 0000000..fb8eed9 --- /dev/null +++ b/config.php @@ -0,0 +1,74 @@ + '', + 'passwordsalt' => '', + 'secret' => '', + 'trusted_domains' => + array ( + 0 => ' fqdn', + 1 => ' IP', + ), + 'trusted_proxies' => + array ( + 0 => '', + 1 => '172.64.0.0/13', + 2 => '104.16.0.0/13', + 3 => '104.24.0.0/14', + 4 => '162.158.0.0/15', + 5 => '173.245.48.0/20', + 6 => '103.21.244.0/22', + 7 => '103.22.200.0/22', + 8 => '103.31.4.0/22', + 9 => '141.101.64.0/18', + 10 => '108.162.192.0/18', + 11 => '190.93.240.0/20', + 12 => '188.114.96.0/20', + 13 => '197.234.240.0/22', + 14 => '198.41.128.0/17', + 15 => '131.0.72.0/22', + ), + 'forwarded_for_headers' => + array ( + 0 => 'HTTP_X_FORWARDED_FOR', + ), + 'datadirectory' => '/var/www//data', + 'dbtype' => 'mysql', + 'version' => '33.0.3.2', + 'overwrite.cli.url' => 'https://', + 'dbname' => 'nextcloud', + 'dbhost' => 'localhost', + 'dbport' => '', + 'dbtableprefix' => 'oc_', + 'mysql.utf8mb4' => true, + 'dbuser' => 'nextcloud', + 'dbpassword' => '', + 'installed' => true, + 'memcache.local' => '\\OC\\Memcache\\APCu', + 'default_phone_region' => 'US', + 'maintenance' => false, + 'config_is_read_only' => false, + 'mail_smtpmode' => 'smtp', + 'mail_sendmailmode' => 'smtp', + 'mail_from_address' => 'nextcloud', + 'mail_domain' => '', + 'mail_smtphost' => '', + 'mail_smtpport' => '587', + 'mail_smtpauth' => true, + 'mail_smtpname' => 'nextcloud@', + 'mail_smtppassword' => '', + 'maintenance_window_start' => 6, + 'memcache.locking' => '\\OC\\Memcache\\Redis', + 'redis' => + array ( + 'host' => 'localhost', + 'port' => 6379, + 'timeout' => 0.0, + 'password' => '', + ), + 'app_install_overwrite' => + array ( + 0 => 'drawio', + ), + 'theme' => '', + 'loglevel' => 2, +); \ No newline at end of file