GDPR for side-projects? Blocking all EU traffic with Nginx in 3 simple steps
1–10 of 54 posts
Re: GDPR for side-projects? Blocking all EU traffic with Nginx in 3 simple steps
#2I'm sure many Governments would love to be able to so simply identify what their citizens do online though.
Re: GDPR for side-projects? Blocking all EU traffic with Nginx in 3 simple steps
#3But for compliance many interpretations say it's EU /citizens/; I don't think there are 3 simple steps to block any EU citizen... I'm sure many Governments would love to be able to so simply identify what their citizens do online though.
Re: GDPR for side-projects? Blocking all EU traffic with Nginx in 3 simple steps
#4Re: GDPR for side-projects? Blocking all EU traffic with Nginx in 3 simple steps
#5Re: GDPR for side-projects? Blocking all EU traffic with Nginx in 3 simple steps
#6Just for fun, I would add
server {
# snip....
access_log off;
error_log off;
return 307 https://www.google.com/search?q=gdpr;
}
That should block anyone that might be a EU citizen. /sRe: GDPR for side-projects? Blocking all EU traffic with Nginx in 3 simple steps
#7Re: GDPR for side-projects? Blocking all EU traffic with Nginx in 3 simple steps
#8If you have a side project that siphons personal information from people for no reason, then maybe the gdpr isn’t the problem...
I use third party tools to help worth logging and error tracking.
Its just not worth my time to support gdpr on a website that makes no money.
Re: GDPR for side-projects? Blocking all EU traffic with Nginx in 3 simple steps
#9If you have a side project that siphons personal information from people for no reason, then maybe the gdpr isn’t the problem...
I also think the 403 error page explaining that the GDPR is the reason the visitor can't access the page is a nice touch.
Re: GDPR for side-projects? Blocking all EU traffic with Nginx in 3 simple steps
#10But for compliance many interpretations say it's EU /citizens/; I don't think there are 3 simple steps to block any EU citizen... I'm sure many Governments would love to be able to so simply identify what their citizens do online though.
those interpretations are wrong. but even so, blocking eu traffic by IP isn’t sufficient.
Source?