nginx 에서 geoip 을 사용 하여 지역 제한 을 합 니 다.

2331 단어 nginx
이 블 로 그 는 일 을 위해 필기 한다.
환경: nginx version: nginx / 1.14.0 centos version: centos 7 수 요 는 다음 과 같 습 니 다. IP 를 통 해 국내 나 외국 을 구별 하여 서로 다른 페이지 로 넘 어가 고 최종 적 으로 nginx 의 제3자 module: geoip 으로 이 루어 집 니 다. 이것 은 그의 장점 을 말 하지 않 습 니 다. 인터넷 에서 많은 설명 을 했 습 니 다. 다음은 어떻게 설정 하 는 지 보 겠 습 니 다.
제 시스템 에는 Nignx. repo 가 설정 되 어 있 습 니 다. 저 는 직접 yum 으로 geoip 모듈 을 설 치 했 습 니 다. 모듈 을 추가 하여 재 편집 하 는 방식 은 없습니다.
yum install nginx-module-geoip

geoip 데이터베이스 파일 다운로드
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


필요 에 따라 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


위 에 그냥 간단하게 배치 해서...

좋은 웹페이지 즐겨찾기