15.NginxGeo

编程

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

专题阅读

  • 1. Nginx的优点
  • 2. Nginx的安装与开机自启
  • 3. Nginx目录和配置语法
  • 4. Nginx模块
  • 5. Nginx静态资源处理
  • 6. Nginx浏览器缓存原理
  • 7. Nginx资源的跨域访问
  • 8. Nginx资源的防盗链
  • 9. Nginx代理
  • 10. Nginx负载均衡
  • 11. Nginx缓存
  • 12. Nginx动静分离
  • 13. Nginx Rewrite
  • 14. Nginx Secure Link
  • 15. Nginx Geo
  • 16. Nginx HTTPS服务
  • 17. Nginx与Lua开发
  • 18. Nginx与Lua灰度发布
  • 19. Nginx常见错误
  • 20. Nginx性能优化
  • 21. Nginx安全管理

以上是 15.NginxGeo 的全部内容, 来源链接: utcz.com/z/514920.html

回到顶部