1. <ul id="0c1fb"></ul>

      <noscript id="0c1fb"><video id="0c1fb"></video></noscript>
      <noscript id="0c1fb"><listing id="0c1fb"><thead id="0c1fb"></thead></listing></noscript>

      99热在线精品一区二区三区_国产伦精品一区二区三区女破破_亚洲一区二区三区无码_精品国产欧美日韩另类一区

      RELATEED CONSULTING
      相關(guān)咨詢
      選擇下列產(chǎn)品馬上在線溝通
      服務(wù)時(shí)間:8:30-17:00
      你可能遇到了下面的問(wèn)題
      關(guān)閉右側(cè)工具欄

      新聞中心

      這里有您想知道的互聯(lián)網(wǎng)營(yíng)銷解決方案
      nginx中如何使用geoip做區(qū)域限制

      本文小編為大家詳細(xì)介紹“nginx中如何使用geoip做區(qū)域限制”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“nginx中如何使用geoip做區(qū)域限制”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來(lái)學(xué)習(xí)新知識(shí)吧。

      西雙版納網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián),西雙版納網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為西雙版納上千多家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站建設(shè)要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的西雙版納做網(wǎng)站的公司定做!

      環(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)上很多解釋,下面看怎么配置

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

      讀到這里,這篇“nginx中如何使用geoip做區(qū)域限制”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識(shí)點(diǎn)還需要大家自己動(dòng)手實(shí)踐使用過(guò)才能領(lǐng)會(huì),如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


      分享題目:nginx中如何使用geoip做區(qū)域限制
      鏈接URL:http://ef60e0e.cn/article/ghsgpo.html
      99热在线精品一区二区三区_国产伦精品一区二区三区女破破_亚洲一区二区三区无码_精品国产欧美日韩另类一区
      1. <ul id="0c1fb"></ul>

        <noscript id="0c1fb"><video id="0c1fb"></video></noscript>
        <noscript id="0c1fb"><listing id="0c1fb"><thead id="0c1fb"></thead></listing></noscript>

        金平| 新密市| 鲜城| 建阳市| 海伦市| 平罗县| 麻城市| 安宁市| 靖宇县| 突泉县| 贵定县| 杭锦后旗| 比如县| 礼泉县| 轮台县| 武定县| 临城县| 两当县| 松阳县| 普格县| 清丰县| 黄梅县| 武胜县| 丰都县| 虞城县| 齐齐哈尔市| 日照市| 稻城县| 谢通门县| 中山市| 邻水| 全椒县| 玉门市| 桂东县| 绍兴县| 穆棱市| 阿尔山市| 涡阳县| 如皋市| 东阿县| 白山市|