· 8 years ago · Mar 05, 2018, 05:30 PM
1<?php
2$CONFIG = array (
3 'memcache.local' => '\\OC\\Memcache\\APCu',
4 'datadirectory' => '/data',
5 'instanceid' => 'blah',
6 'passwordsalt' => 'blah',
7 'secret' => 'blah',
8 'trusted_domains' =>
9 array (
10 0 => '192.168.1.200:446',
11 1 => 'cloud.domain.com',
12 ),
13 'overwrite.cli.url' => 'https://cloud.domain.com',
14 'overwritehost' => 'cloud.domain.com',
15 'overwriteprotocol' => 'https',
16 'dbtype' => 'mysql',
17 'version' => '13.0.0.14',
18 'dbname' => 'nextcloud',
19 'dbhost' => '192.168.1.200:3306',
20 'dbport' => '',
21 'dbtableprefix' => 'oc_',
22 'dbuser' => 'blah',
23 'dbpassword' => 'blah',
24 'logtimezone' => 'PST',
25 'installed' => true,
26 'mail_smtpmode' => 'smtp',
27 'mail_smtpauthtype' => 'LOGIN',
28 'mail_from_address' => 'blah',
29 'mail_domain' => 'gmail.com',
30 'mail_smtpsecure' => 'ssl',
31 'mail_smtpauth' => 1,
32 'mail_smtphost' => 'smtp.gmail.com',
33 'mail_smtpport' => '465',
34 'mail_smtpname' => 'blah@gmail.com',
35 'mail_smtppassword' => 'blah',
36);