|
|
|
|
|
by Jakob
3037 days ago
|
|
The legal ramifications of storing IP addresses didn’t change with GDPR. You should already have them anonymized since they count as personal data: Google Analytics (https://developers.google.com/analytics/devguides/collection...): ga('set', 'anonymizeIp', true);
Web server (here nginx, https://stackoverflow.com/a/45405406): map $remote_addr $remote_addr_anon {
~(?P<ip>\d+\.\d+\.\d+)\. $ip.0;
~(?P<ip>[^:]+:[^:]+): $ip::;
default 0.0.0.0;
}
Only if you store more data about your customers/users you need to act further. |
|
Note that this doesn't actually provide any useful anonymization. That feature is a placebo designed to give minimal compliance with privacy policies and pre-GDPR data protection requirements.
https://news.ycombinator.com/item?id=13639921