swee revised this gist . Go to revision
1 file changed, 66 insertions
config.php(file created)
@@ -0,0 +1,66 @@ | |||
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 | + | ); |
Newer
Older