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
위 에 그냥 간단하게 배치 해서...
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
간단! Certbot을 사용하여 웹 사이트를 SSL(HTTPS)화하는 방법초보자가 인프라 주위를 정돈하는 것은 매우 어렵습니다. 이번은 사이트를 간단하게 SSL화(HTTP에서 HTTPS통신)로 변경하는 방법을 소개합니다! 이번에는 소프트웨어 시스템 Nginx CentOS7 의 환경에서 S...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.