2014-01-31 00:00:34 +01:00
|
|
|
Description
|
|
|
|
===========
|
|
|
|
|
2014-03-11 11:15:11 +01:00
|
|
|
**ngx_http_geoip2_module** - creates variables with values from the maxmind geoip2 databases based on the client IP (supports both IPv4 and IPv6)
|
2014-03-11 11:19:43 +01:00
|
|
|
|
2014-03-13 13:39:00 +01:00
|
|
|
## Installing
|
|
|
|
First install [libmaxminddb](https://github.com/maxmind/libmaxminddb) as described in its [README.md
|
|
|
|
file](https://github.com/maxmind/libmaxminddb/blob/master/README.md#installing-from-a-tarball).
|
|
|
|
|
|
|
|
Compile nginx:
|
|
|
|
```
|
|
|
|
./configure --add-module=/path/to/ngx_http_geoip2_module
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
```
|
|
|
|
|
2014-03-13 13:46:27 +01:00
|
|
|
## Download Maxmind GeoLite2 Database (optional)
|
|
|
|
The free GeoLite2 databases are available from [Maxminds website](http://dev.maxmind.com/geoip/geoip2/geolite2/)
|
|
|
|
|
|
|
|
[GeoLite2 City](http://geolite.maxmind.com/download/geoip/database/GeoLite2-City.mmdb.gz)
|
|
|
|
[GeoLite2 Country](http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.mmdb.gz)
|
|
|
|
|
2014-03-11 11:19:43 +01:00
|
|
|
## Example Usage:
|
|
|
|
```
|
|
|
|
http {
|
|
|
|
...
|
2014-04-26 12:26:37 +02:00
|
|
|
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;
|
|
|
|
}
|
2014-03-11 11:19:43 +01:00
|
|
|
....
|
|
|
|
}
|
|
|
|
```
|