Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordizzy <diosmosis@users.noreply.github.com>2021-07-16 06:02:36 +0300
committerGitHub <noreply@github.com>2021-07-16 06:02:36 +0300
commitdc29fc3e39e3696b7c3f188f23d3fe415afa42bd (patch)
treed9b565765c55dc4541cfd78d6112fc979ed042f6 /CHANGELOG.md
parent5b9076d7535142365be6a5789a6395aa03b3bd13 (diff)
add config to read the last IP address in the list of proxies rather than the first (#17765)
* by default read the last IP address in the list of proxies rather than the first * apply review feedback * apply review feedback * update expected screenshot
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index db70e88713..3d69ae3b78 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -11,6 +11,10 @@ The Product Changelog at **[matomo.org/changelog](https://matomo.org/changelog)*
* The `logme` method for automatic logins is now disabled by default for new installations. For existing installations it will be enabled automatically on update. If you do not need it please consider disabling it again for security reasons by setting `login_allow_logme = 0` in `General` section of `config.ini.php`.
* The redirect using the `url` param for the automatic login action `logme`, will no longer do redirects to untrusted hosts. If you need to do redirects to other URLs on purpose, please add the according hosts as `trusted_hosts` entry in `config.ini.php`
+### New config.ini.php settings
+
+* When determining the client IP address from proxy headers like X-Forwarded-For, Matomo will by default look at the first IP in the list. If you need to read the last IP instead, the new INI config option `[General] proxy_ip_read_last_in_list` be set to `1`. Using the last IP can be more secure when you are using proxy headers in combination with a load balancer.
+
### Changes to events
* It is now possible via the Mail.send event to abort sending emails. Set the `$mail` event parameter to null to do this.