欧美一区二区三区老妇人-欧美做爰猛烈大尺度电-99久久夜色精品国产亚洲a-亚洲福利视频一区二区

nginx如何使用geoip做區(qū)域限制

這篇文章主要介紹了nginx如何使用geoip做區(qū)域限制,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

創(chuàng)新互聯(lián)專注于圍場網(wǎng)站建設服務及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供圍場營銷型網(wǎng)站建設,圍場網(wǎng)站制作、圍場網(wǎng)頁設計、圍場網(wǎng)站官網(wǎng)定制、微信平臺小程序開發(fā)服務,打造圍場網(wǎng)絡公司原創(chuàng)品牌,更為您提供圍場網(wǎng)站排名全網(wǎng)營銷落地服務。

GeoIP過濾器根據(jù)來自Maxmind GeoLite2數(shù)據(jù)庫的數(shù)據(jù)添加有關IP地址的地理位置的信息。

通過IP區(qū)別國內(nèi)或國外,從而跳轉到不同的頁面,最終用nginx的第三方module:geoip來實現(xiàn),這就不說它的優(yōu)勢了,網(wǎng)上很多解釋,下面看怎么配置                                                                     ( 推薦學習:nginx使用 )

我的系統(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;
}

配置虛擬主機如下:

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ū)域限制”這篇文章對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián),關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關知識等著你來學習!

標題名稱:nginx如何使用geoip做區(qū)域限制
文章位置:http://chinadenli.net/article34/gjshse.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供ChatGPT網(wǎng)站營銷、網(wǎng)站策劃、網(wǎng)站設計、品牌網(wǎng)站制作網(wǎng)站建設

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)

成都app開發(fā)公司