diff options
author | Sander Ruitenbeek <sander@getgoing.nl> | 2020-02-23 09:38:19 +0100 |
---|---|---|
committer | Sander Ruitenbeek <sander@getgoing.nl> | 2020-03-07 00:04:12 +0100 |
commit | 57415932fdf298a9a168edacbcaee9ea64da2322 (patch) | |
tree | d02e8d2b16187fa9c26da22f5eff50b41ad74694 /config | |
parent | 6895a235174d02fe095cb51321e60e8ffaa3cfcf (diff) | |
download | nextcloud-server-57415932fdf298a9a168edacbcaee9ea64da2322.tar.gz nextcloud-server-57415932fdf298a9a168edacbcaee9ea64da2322.zip |
Added IPv6 example
Signed-off-by: Sander Ruitenbeek <sander@getgoing.nl>
Fix typos
Signed-off-by: Sander Ruitenbeek <sander@getgoing.nl>
Diffstat (limited to 'config')
-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]' ), |