Live data from Hacker News

GDPR for side-projects? Blocking all EU traffic with Nginx in 3 simple steps

medium.com

1–10 of 54 posts

Re: GDPR for side-projects? Blocking all EU traffic with Nginx in 3 simple steps

#3
post #2

But 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.

Re: GDPR for side-projects? Blocking all EU traffic with Nginx in 3 simple steps

#6
Geo IP blocking will not block the EU citizens that are not physically in the EU at the time.

Just 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. /s

Re: GDPR for side-projects? Blocking all EU traffic with Nginx in 3 simple steps

#8
post #5

If you have a side project that siphons personal information from people for no reason, then maybe the gdpr isn’t the problem...

I don't have time to build user exporting, user deletion, user notifications, amongst other required features on top of the already big backlog of fearures to do.

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

#9
post #5

If you have a side project that siphons personal information from people for no reason, then maybe the gdpr isn’t the problem...

My reading of the GDPR says that the MINIMUM fine is 20,000,000 Euros, which I think would be a pretty big problem for an individual working on a side project.

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

#10
post #2

But 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.

> those interpretations are wrong.

Source?

Post reply on HN