NextCloud反向代理

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
<?php
$CONFIG = array (
'memcache.local' => '\\OC\\Memcache\\APCu',
'memcache.locking' => '\\OC\\Memcache\\Redis',
'redis' =>
array (
'host' => 'Redis地址',
'port' => Redis端口,
),
'datadirectory' => '/data',
'instanceid' => 'c1r4ss',
'passwordsalt' => 'Y465JyqS3RiDl',
'secret' => '6AaD8x0dyNTwX03RsGpVZMjkEau',
'trusted_domains' =>
array (
0 => '本机IP',
1 => '信任域名1',
2 => '信任域名2',
),
'dbtype' => 'mysql',
'version' => '22.2.3.0',
'overwrite.cli.url' => 'https://域名',
'dbname' => '数据库名',
'dbhost' => '数据库地址:3306',
'dbport' => '',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'dbuser' => '数据库用户',
'dbpassword' => '数据库密码',
'installed' => true,
# 'auth.bruteforce.protection.enabled' => false,
'overwritehost' => '代理域名或域名加端口',
'overwriteprotocol' => 'https',
'app_install_overwrite' =>
array (
0 => 'hancomoffice',
),
);

NextCloud反向代理
https://kuan.pages.dev/article/aae55609.html
作者
IKun
发布于
2023年7月15日
许可协议