15. Nginx Geo

IP数据库下载地址:html

国家数据库:http://geolite.maxmind.com/do...nginx

城市数据库:http://geolite.maxmind.com/do...数据库

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/segmentfault

119.32.216.122 China CN Guangzhou

专题阅读

相关文章
相关标签/搜索