时间:2021-05-19
该博客为工作笔记
环境:
nginx version: nginx/1.14.0
centos version: centos7
需求如下:
通过IP区别国内或国外,从而跳转到不同的页面,最终用nginx的第三方module:geoip来实现,这就不说它的优势了,网上很多解释,下面看怎么配置
我的系统中是配置了nignx.repo的,我直接用yum来安装了geoip模块,没有用添加模块重编的方式
yum install nginx-module-geoip下载geoip的数据库文件
cd /etc/nginxmkdir geoipdatcd geoipdat下载wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gzwget http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz解压gunzip GeoIP.dat.gzgunzip GeoLiteCity.dat.gz根据需求配置nginx
首先在nginx.conf中加载geoip的库,配置如下:
load_module "modules/ngx_http_geoip_module.so";load_module "modules/ngx_stream_geoip_module.so";user nginx;worker_processes 1;error_log /var/log/nginx/error.log warn;pid /var/run/nginx.pid;events { worker_connections 1024;}http { include /etc/nginx/mime.types; default_type application/octet-stream; log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log /var/log/nginx/access.log main; sendfile on; #tcp_nopush on; keepalive_timeout 65; #gzip on; include /etc/nginx/conf.d/*.conf;}配置虚拟主机如下:
geoip_country /etc/nginx/geoipdat/GeoIP.dat;geoip_city /etc/nginx/geoipdat/GeoLiteCity.dat;server { listen 80; server_name localhost; location / { root /opt; if ($geoip_country_code = CN){ rewrite (.*) /zh$1 break; } rewrite (.*) /en$1 break; } error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; }}opt目录如下
[root@VM_0_15_centos opt]# tree.|└── en│ └── index.html└── zh └── index.html上面只是简单配置一下。。。。
以上这篇在nginx中使用geoip做区域限制的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
修改Nginx上传文件最大值限制我们使用ngnix做webserver的时候,nginx对上传文件的大小有限制。这个时候我们要修改nginx参数。sudovim
;?>列表A中的代码显示了使用模块(geoip.inc)以访问GeoIP免费国家信息数据库(GeoIP.dat)的基本方法。示例假设PHPinclude和国家家
本文介绍Nginx禁止指定UA访问的配置。UA,即HttpUserAgent,在Nginx中使用内置变量$http_user_agent表示,该信息作为requ
nginx不支持if嵌套,也不允许在if中使用逻辑判断,会报如下错误:nginx:[emerg]"if"directiveisnotallowed当业务需要多个
专属流量是指有某种限制的流量。通常限制包括:流量使用网络,比如是3G流量还是4G流量。时间限制,比如指定时间段时间使用。区域限制,在指定区域使用。 流量(fl