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
|
|
|
|
|
|
|
## Example Usage:
|
|
|
|
```
|
|
|
|
http {
|
|
|
|
...
|
|
|
|
geoip2_mmdb /etc/maxmind-city.mmdb;
|
|
|
|
geoip2_data $geoip2_data_country_code country iso_code;
|
|
|
|
geoip2_data $geoip2_data_country_name country names en;
|
|
|
|
geoip2_data $geoip2_data_city_name city names en;
|
|
|
|
geoip2_data $geoip2_data_geoname_id country geoname_id;
|
|
|
|
geoip2_data $geoip2_data_latitude location latitude;
|
|
|
|
....
|
|
|
|
}
|
|
|
|
```
|