該博客為工作筆記
環(huán)境:
nginx version: nginx/1.14.0
centos version: centos7
需求如下:
通過(guò)IP區(qū)別國(guó)內(nèi)或國(guó)外,從而跳轉(zhuǎn)到不同的頁(yè)面,最終用nginx的第三方module:geoip來(lái)實(shí)現(xiàn),這就不說(shuō)它的優(yōu)勢(shì)了,網(wǎng)上很多解釋?zhuān)旅婵丛趺磁渲?/p>
我的系統(tǒng)中是配置了nignx.repo的,我直接用yum來(lái)安裝了geoip模塊,沒(méi)有用添加模塊重編的方式
yum install nginx-module-geoip
下載geoip的數(shù)據(jù)庫(kù)文件
cd /etc/nginx
mkdir geoipdat
cd geoipdat
下載
wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz
wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz
解壓
gunzip GeoIP.dat.gz
gunzip GeoLiteCity.dat.gz
根據(jù)需求配置nginx
首先在nginx.conf中加載geoip的庫(kù),配置如下:
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;
}
配置虛擬主機(jī)如下:
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
上面只是簡(jiǎn)單配置一下。。。。
以上這篇在nginx中使用geoip做區(qū)域限制的方法就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。