config.php
· 1.8 KiB · PHP
Eredeti
<?php
$CONFIG = array (
'objectstore' =>
array (
'class' => '\\OC\\Files\\ObjectStore\\S3',
'arguments' =>
array (
'bucket' => 'nextcloud',
'hostname' => '<redacted>.r2.cloudflarestorage.com',
'key' => '<redacted>',
'secret' => '<redacted>',
'use_path_style' => true,
'region' => 'auto',
'use_ssl' => true,
'autocreate' => true,
'verify_bucket_exists' => true,
'sse_c_key' => '<redacted>',
),
),
'instanceid' => '<redacted>',
'passwordsalt' => '<redacted>',
'secret' => '<redacted>',
'trusted_domains' =>
array (
0 => 'n.swee.codes',
),
'datadirectory' => '/var/www/nextcloud/data',
'dbtype' => 'mysql',
'version' => '31.0.5.1',
'overwrite.cli.url' => 'https://n.swee.codes',
'dbname' => 'nextcloud_db',
'dbhost' => 'localhost',
'dbport' => '',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'dbuser' => 'nextclouduser',
'dbpassword' => '<redacted>',
'installed' => true,
'maintenance' => false,
'enforce_theme' => 'dark',
'memcache.locking' => '\\OC\\Memcache\\Redis',
'memcache.distributed' => '\\OC\\Memcache\\Redis',
'memcache.local' => '\\OC\\Memcache\\Redis',
'redis' =>
array (
'host' => '127.0.0.1',
'port' => 6379,
),
'maintenance_window_start' => 7,
'default_phone_region' => 'US',
'mail_domain' => 'swee.codes',
'mail_from_address' => 'noreply',
'mail_smtpmode' => 'smtp',
'mail_sendmailmode' => 'smtp',
'mail_smtphost' => 'peppermint.node.swee.codes',
'mail_smtpauth' => true,
'mail_smtpport' => '25',
'mail_smtpname' => 'noreply@swee.codes',
'mail_smtppassword' => '<redacted>',
'app_install_overwrite' =>
array (
),
'theme' => '',
'ldapProviderFactory' => 'OCA\\User_LDAP\\LDAPProviderFactory',
"loglevel" => 2,
);
1 | <?php |
2 | $CONFIG = array ( |
3 | 'objectstore' => |
4 | array ( |
5 | 'class' => '\\OC\\Files\\ObjectStore\\S3', |
6 | 'arguments' => |
7 | array ( |
8 | 'bucket' => 'nextcloud', |
9 | 'hostname' => '<redacted>.r2.cloudflarestorage.com', |
10 | 'key' => '<redacted>', |
11 | 'secret' => '<redacted>', |
12 | 'use_path_style' => true, |
13 | 'region' => 'auto', |
14 | 'use_ssl' => true, |
15 | 'autocreate' => true, |
16 | 'verify_bucket_exists' => true, |
17 | 'sse_c_key' => '<redacted>', |
18 | ), |
19 | ), |
20 | 'instanceid' => '<redacted>', |
21 | 'passwordsalt' => '<redacted>', |
22 | 'secret' => '<redacted>', |
23 | 'trusted_domains' => |
24 | array ( |
25 | 0 => 'n.swee.codes', |
26 | ), |
27 | 'datadirectory' => '/var/www/nextcloud/data', |
28 | 'dbtype' => 'mysql', |
29 | 'version' => '31.0.5.1', |
30 | 'overwrite.cli.url' => 'https://n.swee.codes', |
31 | 'dbname' => 'nextcloud_db', |
32 | 'dbhost' => 'localhost', |
33 | 'dbport' => '', |
34 | 'dbtableprefix' => 'oc_', |
35 | 'mysql.utf8mb4' => true, |
36 | 'dbuser' => 'nextclouduser', |
37 | 'dbpassword' => '<redacted>', |
38 | 'installed' => true, |
39 | 'maintenance' => false, |
40 | 'enforce_theme' => 'dark', |
41 | 'memcache.locking' => '\\OC\\Memcache\\Redis', |
42 | 'memcache.distributed' => '\\OC\\Memcache\\Redis', |
43 | 'memcache.local' => '\\OC\\Memcache\\Redis', |
44 | 'redis' => |
45 | array ( |
46 | 'host' => '127.0.0.1', |
47 | 'port' => 6379, |
48 | ), |
49 | 'maintenance_window_start' => 7, |
50 | 'default_phone_region' => 'US', |
51 | 'mail_domain' => 'swee.codes', |
52 | 'mail_from_address' => 'noreply', |
53 | 'mail_smtpmode' => 'smtp', |
54 | 'mail_sendmailmode' => 'smtp', |
55 | 'mail_smtphost' => 'peppermint.node.swee.codes', |
56 | 'mail_smtpauth' => true, |
57 | 'mail_smtpport' => '25', |
58 | 'mail_smtpname' => 'noreply@swee.codes', |
59 | 'mail_smtppassword' => '<redacted>', |
60 | 'app_install_overwrite' => |
61 | array ( |
62 | ), |
63 | 'theme' => '', |
64 | 'ldapProviderFactory' => 'OCA\\User_LDAP\\LDAPProviderFactory', |
65 | "loglevel" => 2, |
66 | ); |
67 |