文章

config.php

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
68
69
70
71
72
73
74
75
76
<?php
$CONFIG = array (
  'htaccess.RewriteBase' => '/',
  'memcache.local' => '\OC\Memcache\APCu',
  'memcache.distributed' => '\OC\Memcache\Redis',
  'memcache.locking' => '\OC\Memcache\Redis', 
  'filelocking.enabled' => 'true',
  'redis' =>
  array (
    'host' => '10.0.24.14',
    'port' => 6379,
    'password' => '@T9Z6PmskYZ%~2Czby',
    'dbindex' => 10,
    'timeout' => 0.0,
    'read_timeout' => 0.0,
  ),
  '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,
    ),
  ),
  'passwordsalt' => 'Q9Gra5bQmKSlkzKESWvYTaIYd9Dyai',
  'secret' => '2CiEaoA/2qYIRPBSxQf25VtEZpm0qXLZTde3vlhUNGBqggj1',
  'trusted_domains' => 
  array (
    0 => 'localhost',
    1 => 'cloud.fscloude.cn',
  ),
  'datadirectory' => '/var/www/html/data',
  'default_phone_region' => 'CN',
  'dbtype' => 'mysql',
  'version' => '25.0.3.2',
  'overwrite.cli.url' => 'https://cloud.fscloude.cn',
  'dbname' => 'nextcloud',
  'dbhost' => 'db_nextcloud:3306',
  'dbport' => '',
  'dbtableprefix' => 'oc_',
  'mysql.utf8mb4' => true,
  'dbuser' => 'nextcloud',
  'dbpassword' => '7JhFWDqjPhAfX7htj9',
  'installed' => true,
  'overwriteprotocol' => 'https',
  'instanceid' => 'oc16mq22a9tt',
  'loglevel' => 2,
  'logfile' => '/var/www/html/logs/nextcloud.log',
  'mail_smtpmode' => 'smtp',
  'mail_from_address' => 'fscloude',
  'mail_domain' => 'fscloude.cn',
  'mail_smtphost' => 'smtp.exmail.qq.com',
  'mail_smtpport' => '465',
  'mail_smtpauthtype' => 'LOGIN',
  'mail_smtpsecure' => 'ssl',
  'twofactor_enforced' => 'true',
  'twofactor_enforced_groups' => 
  array (
    0 => 'admin',
  ),
  'twofactor_enforced_excluded_groups' => 
  array (
    0 => '分享自由',
  ),
  'mail_smtpauth' => 1,
  'mail_smtpname' => 'fscloude@fscloude.cn',
  'mail_smtppassword' => 'NjhojzZAuj6MazUS',
  'maintenance' => false,
);
本文由作者按照 CC BY 4.0 进行授权