1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
| <?php $CONFIG = array ( 'htaccess.RewriteBase' => '/', 'memcache.local' => '\\OC\\Memcache\\APCu', 'apps_paths' => array ( 0 => array ( 'path' => '/var/www/html/apps', 'url' => '/apps', 'writable' => false, ), 1 => array ( 'path' => '/var/www/html/custom_apps', 'url' => '/custom_apps', 'writable' => true, ), ), 'memcache.distributed' => '\\OC\\Memcache\\Redis', 'memcache.locking' => '\\OC\\Memcache\\Redis', 'redis' => array ( 'host' => 'redis', 'password' => 'your_redis_password', 'port' => 6379, ), 'upgrade.disable-web' => true, 'instanceid' => '', 'passwordsalt' => '', 'secret' => '', 'trusted_domains' => array ( 0 => 'localhost', 1 => 'https://your.domain.com', ), 'datadirectory' => '/var/www/html/data', 'dbtype' => 'mysql', 'version' => '30.0.4.1', 'overwriteprotocol' => 'https', 'overwrite.cli.url' => 'https://your.domain.com', 'dbname' => 'nextcloud', 'dbhost' => 'db', 'dbport' => '', 'dbtableprefix' => 'oc_', 'mysql.utf8mb4' => true, 'dbuser' => 'nextcloud', 'dbpassword' => 'your_db_password', 'installed' => true, 'config_is_read_only' => false, 'default_language' => 'CN', 'default_phone_region' => 'CN', 'mail_smtpmode' => 'smtp', 'mail_sendmailmode' => 'smtp', 'mail_smtphost' => 'smtp.domain.com', 'mail_smtpport' => '587', 'mail_from_address' => 'name', 'mail_domain' => 'mail.com', 'mail_smtpauth' => 1, 'mail_smtpname' => 'name@mail.com', 'mail_smtppassword' => 'passwd', 'defaultapp' => '', 'loglevel' => 2, 'maintenance' => false, 'appstoreenabled' => false, );
|