]> source.dussan.org Git - nextcloud-server.git/commitdiff
docs: trusted_proxies support IPv6 ranges 35956/head
authorDaniel Kesselberg <mail@danielkesselberg.de>
Tue, 3 Jan 2023 11:17:21 +0000 (12:17 +0100)
committerDaniel Kesselberg <mail@danielkesselberg.de>
Tue, 3 Jan 2023 11:17:21 +0000 (12:17 +0100)
Support for IPv6 ranges was added by https://github.com/nextcloud/server/pull/32615

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
config/config.sample.php

index a2976ed1a7b295cc82a9c46a08eff59e517b74e4..4597ce9a77daa5345bac977e2fec308e57eae5c2 100644 (file)
@@ -2027,9 +2027,7 @@ $CONFIG = [
  * - IPv4 addresses, e.g. `192.168.2.123`
  * - IPv4 ranges in CIDR notation, e.g. `192.168.2.0/24`
  * - IPv6 addresses, e.g. `fd9e:21a7:a92c:2323::1`
- *
- * _(CIDR notation for IPv6 is currently work in progress and thus not
- * available yet)_
+ * - IPv6 ranges in CIDR notation, e.g. `2001:db8:85a3:8d3:1319:8a20::/95`
  *
  * When an incoming request's `REMOTE_ADDR` matches any of the IP addresses
  * specified here, it is assumed to be a proxy instead of a client. Thus, the
@@ -2288,9 +2286,9 @@ $CONFIG = [
  *
  * For instance, if the phone property should default to the private scope
  * instead of the local one:
- * 
+ *
  * ::
- * 
+ *
  *     [
  *       \OCP\Accounts\IAccountManager::PROPERTY_PHONE => \OCP\Accounts\IAccountManager::SCOPE_PRIVATE
  *     ]