Perhaps a dumb question, but if all you are going to do is return a 403, why not just do this filtering in the firewall by blocking the offending IP space. Yeah I know a server should always have some response, but it isn't like you would be the first person to just block entire countries. (I don't do this on 80/443, but I do block most email ports outside the US.) 

The only reason I mention this is Nginx blocking is more CPU intensive than the firewall.  On a small VPS, you might notice the difference in loadomg.


From: softwareinfo...@gmail.com
Sent: April 12, 2019 7:24 PM
To: nginx@nginx.org
Reply-to: nginx@nginx.org
Subject:

Hi All

I have implemented GEO IP blocking which is working just fine. I have the settings you see below.

 

    map $geoip_country_code $country_access {

        "US"    0;

        default 1;

    }

 

    server {

         if ($country_access = '1') {

         return 403;

         }

 

I notice though that in the logs, the internal IP Addresses are not tagged with a country code so internal subnets are getting blocked. Would the correct solution be to enter the subnets manually such as this config below? Or is there a better solution? Oh by the way, I did try this below and it didn’t work. Trying to keep the Geographical blocking but allow some IP ranges. Any ideas on how to do this? Any help would be appreciated.

  

 map $geoip_country_code $country_access {

        "US"    0;

       192.168.1.0/24’ 0;

        default 1;

    }

 

 

Regards

SI

 

 

_______________________________________________
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx

Reply via email to