标签:数据 pre 阅读 nginx性能优化 rewrite data min 负载均衡 访问
IP数据库下载地址:
国家数据库:http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz
城市数据库:http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz
http {
geoip_country /path/to/GeoIP.dat;
geoip_city /path/to/GeoLiteCity.dat;
server{
listen 3592;
server_name www.siguoya.name;
location / {
default_type text/plain;
if ($geoip_country_code != ‘CN‘){
return 403;
}
return 200 "$remote_addr $geoip_city_country_name $geoip_country_code $geoip_city";
}
}
}
访问:http://www.siguoya.name:3592/
119.32.216.122 China CN Guangzhou
标签:数据 pre 阅读 nginx性能优化 rewrite data min 负载均衡 访问
原文地址:https://www.cnblogs.com/zy108830/p/12600377.html