在nginx中使用geoip做區(qū)域限制的方法
該博客為工作筆記
環(huán)境:
nginx version: nginx/1.14.0
centos version: centos7
需求如下:
通過IP區(qū)別國內(nèi)或國外,從而跳轉(zhuǎn)到不同的頁面,最終用nginx的第三方module:geoip來實(shí)現(xiàn),這就不說它的優(yōu)勢了,網(wǎng)上很多解釋,下面看怎么配置
我的系統(tǒng)中是配置了nignx.repo的,我直接用yum來安裝了geoip模塊,沒有用添加模塊重編的方式
yum install nginx-module-geoip
下載geoip的數(shù)據(jù)庫文件
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的庫,配置如下:
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
上面只是簡單配置一下。。。。
以上這篇在nginx中使用geoip做區(qū)域限制的方法就是小編分享給大家的全部內(nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。
- Nginx限制IP訪問某些頁面的操作
- nginx配置限制同一個(gè)ip的訪問頻率方法
- Nginx服務(wù)器實(shí)現(xiàn)通過ip和user_gent限制訪問的方法分析
- nginx限制IP惡意調(diào)用短信接口處理方法
- Nginx限制某個(gè)IP同一時(shí)間段的訪問次數(shù)和請求數(shù)示例代碼
- Nginx服務(wù)器限制IP訪問的各種情況全解析
- Nginx限制IP并發(fā)數(shù)與下載速度的方法
- nginx與apache限制ip并發(fā)訪問 限制ip連接的設(shè)置方法
- 基于Nginx實(shí)現(xiàn)限制某IP短時(shí)間訪問次數(shù)
相關(guān)文章
nginx中g(shù)zip壓縮提升網(wǎng)站速度的實(shí)現(xiàn)方法
這篇文章主要介紹了nginx中g(shù)zip壓縮提升網(wǎng)站速度的實(shí)現(xiàn)方法,非常不錯(cuò),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2019-08-08Nginx 操作響應(yīng)頭信息的實(shí)現(xiàn)
這篇文章主要介紹了Nginx 操作響應(yīng)頭信息的實(shí)現(xiàn),文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2019-05-05同一臺(tái)服務(wù)器安裝多個(gè)Nginx的方法總結(jié)
在同一臺(tái)服務(wù)器上安裝多個(gè)nginx完全沒有問題,但有些地方是需要注意的,這篇文章為大家整理了一些常會(huì)遇到的問題以及解決方法,需要的可以參考一下2023-08-08