diff options
author | Vincent Petry <vincent@nextcloud.com> | 2023-01-03 17:55:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-03 17:55:30 +0100 |
commit | 6683cfa13eb788d64a318ddf91815b471efb6154 (patch) | |
tree | 5602223b1efda120674c51bfb8a0faa8b811f43f /config/config.sample.php | |
parent | 57ba21fde86b6f11033091d9f8f4aa1ce786d791 (diff) | |
parent | 464b3b0cdb1421a5e9d96690435ae3edbcb791c8 (diff) | |
download | nextcloud-server-6683cfa13eb788d64a318ddf91815b471efb6154.tar.gz nextcloud-server-6683cfa13eb788d64a318ddf91815b471efb6154.zip |
Merge pull request #35963 from nextcloud/backport/docs/ipv6-cidr-stable25
[stable25] docs: trusted_proxies support IPv6 ranges
Diffstat (limited to 'config/config.sample.php')
-rw-r--r-- | config/config.sample.php | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 079d53ce58e..a992479b9f8 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -669,16 +669,16 @@ $CONFIG = [ * and a maximum time for trash bin retention. * * Minimum time is the number of days a file will be kept, after which it - * _may be_ deleted. A file may be deleted after the minimum number of days - * is expired if space is needed. The file will not be deleted if space is - * not needed. + * _may be_ deleted. A file may be deleted after the minimum number of days + * is expired if space is needed. The file will not be deleted if space is + * not needed. * * Whether "space is needed" depends on whether a user quota is defined or not: * - * * If no user quota is defined, the available space on the Nextcloud data + * * If no user quota is defined, the available space on the Nextcloud data * partition sets the limit for the trashbin * (issues: see https://github.com/nextcloud/server/issues/28451). - * * If a user quota is defined, 50% of the user's remaining quota space sets + * * If a user quota is defined, 50% of the user's remaining quota space sets * the limit for the trashbin. * * Maximum time is the number of days at which it is _guaranteed @@ -2005,9 +2005,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 as of 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 |