No description
Find a file
2014-12-08 16:18:21 -08:00
config Initial commit 2014-01-30 23:00:34 +00:00
LICENSE Initial commit 2014-01-30 23:00:34 +00:00
ngx_http_geoip2_module.c Use Nginx's non-standard printf format spec 2014-12-08 16:18:21 -08:00
README.md Added support for using multiple maxmind databases 2014-04-26 11:26:37 +01:00

Description

ngx_http_geoip2_module - creates variables with values from the maxmind geoip2 databases based on the client IP (supports both IPv4 and IPv6)

Installing

First install libmaxminddb as described in its README.md file.

Compile nginx:

./configure --add-module=/path/to/ngx_http_geoip2_module
make 
make install

Download Maxmind GeoLite2 Database (optional)

The free GeoLite2 databases are available from Maxminds website

GeoLite2 City GeoLite2 Country

Example Usage:

http {
    ...
    geoip2 /etc/maxmind-country.mmdb {
        $geoip2_data_country_code default=US country iso_code;
        $geoip2_data_country_name country names en;
    }

    geoip2 /etc/maxmind-city.mmdb {
        $geoip2_data_city_name default=London city names en;
    }
    ....
}