Add config.php
This commit is contained in:
+74
@@ -0,0 +1,74 @@
|
|||||||
|
<?php
|
||||||
|
$CONFIG = array (
|
||||||
|
'instanceid' => '<redacted>',
|
||||||
|
'passwordsalt' => '<redacted>',
|
||||||
|
'secret' => '<redacted>',
|
||||||
|
'trusted_domains' =>
|
||||||
|
array (
|
||||||
|
0 => '<redacted> fqdn',
|
||||||
|
1 => '<redacted> IP',
|
||||||
|
),
|
||||||
|
'trusted_proxies' =>
|
||||||
|
array (
|
||||||
|
0 => '<redacted>',
|
||||||
|
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/<redacted>/data',
|
||||||
|
'dbtype' => 'mysql',
|
||||||
|
'version' => '33.0.3.2',
|
||||||
|
'overwrite.cli.url' => 'https://<redacted>',
|
||||||
|
'dbname' => 'nextcloud',
|
||||||
|
'dbhost' => 'localhost',
|
||||||
|
'dbport' => '',
|
||||||
|
'dbtableprefix' => 'oc_',
|
||||||
|
'mysql.utf8mb4' => true,
|
||||||
|
'dbuser' => 'nextcloud',
|
||||||
|
'dbpassword' => '<redacted>',
|
||||||
|
'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' => '<redacted>',
|
||||||
|
'mail_smtphost' => '<redacted>',
|
||||||
|
'mail_smtpport' => '587',
|
||||||
|
'mail_smtpauth' => true,
|
||||||
|
'mail_smtpname' => 'nextcloud@<redacted>',
|
||||||
|
'mail_smtppassword' => '<redacted>',
|
||||||
|
'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,
|
||||||
|
);
|
||||||
Reference in New Issue
Block a user