Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


nginx geoip problem
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

nginx geoip problem

kampungkampung Member
edited September 2012 in Help

Hi,
I want to configure my nginx to only allow access from some country.
I follow this tutorial http://www.howtoforge.com/nginx-how-to-block-visitors-by-country-with-the-geoip-module-debian-ubuntu

I use debian 6 with nginx from debian repo.

This is snippet of my /etc/nginx/nginx.conf

`
user www-data;
worker_processes 1;

error_log /var/log/nginx/error.log;
pid /var/run/nginx.pid;

events {
worker_connections 1024;
# multi_accept on;
}

http {

    geoip_country /usr/share/GeoIP/GeoIP.dat;
    map $geoip_country_code $allowed_country {
            default no;
            IT yes;
    }

`
It is still not as expected, i can still access the web from other country (not IT/italia)

Any clue?

Comments

Sign In or Register to comment.