diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-03-07 14:10:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-07 14:10:22 +0100 |
commit | c9949d119b7e76088515d3bdd1318036e85322e1 (patch) | |
tree | 330ff2c246d8ed65ad2cbd385fc8880628d242ed | |
parent | 35ccf07ad4d6a64bf7a48bf911be3ddfebf924e5 (diff) | |
parent | 57415932fdf298a9a168edacbcaee9ea64da2322 (diff) | |
download | nextcloud-server-c9949d119b7e76088515d3bdd1318036e85322e1.tar.gz nextcloud-server-c9949d119b7e76088515d3bdd1318036e85322e1.zip |
Merge pull request #19606 from sndrr/ipv6-trusted-domains
Added IPv6 example
-rw-r--r-- | config/config.sample.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 2894bc5debc..3951ef8db3c 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -65,11 +65,15 @@ $CONFIG = array( * This disallows all other ports on this host * - use * as a wildcard, e.g. ubos-raspberry-pi*.local will allow * ubos-raspberry-pi.local and ubos-raspberry-pi-2.local + * - the IP address with or without permitted port, e.g. [2001:db8::1]:8080 + * Using TLS certificates where commonName=<IP address> is deprecated */ 'trusted_domains' => array ( 'demo.example.org', 'otherdomain.example.org', + '10.111.112.113', + '[2001:db8::1]' ), |