nginx 地理定位和 proxpass

nginx 地理定位和 proxpass

我的 Nginx 配置原型有点问题

场景如下:网站访问者将访问 example.com。Nginx 使用 GeoIP 读取当前位置并接受来自浏览器的语言标头。

此信息必须是指 proxypass

我的问题是,如何通过这两个变量告诉 Nginx 使用 proxypass。使用此配置,我出现了 404 错误。

任何想法?

geoip_country   /usr/share/GeoIP/GeoIP.dat;
geoip_proxy 10.241.16.0/24; 



upstream hybrisqa {
       server qa-hybris.local:9001;
}



server {
    listen 80 default_server;
    listen [::]:80 default_server;
#   root /var/www/html;
allow all;
    access_log  /var/log/nginx/test_access.log;
    error_log  /var/log/nginx/test.error.log;



    # Add index.php to the list if you are using PHP
#   index index.html index.htm index.nginx-debian.html;

    server_name   _;

#        return 301 /$geoip_country_code;




location = / {

          rewrite_by_lua '
           if (ngx.var.http_accept_language == nil or ngx.var.http_accept_language == "") then
            ngx.redirect("/en-" .. ngx.var.geoip_country_code .. "/")
          end
          for lang in (ngx.var.http_accept_language .. ","):gmatch("([^,]*),") do
          if string.sub(lang, 0, 2) == "en" then
          ngx.redirect("/en-" .. ngx.var.geoip_country_code .. "/" )
          end
          if string.sub(lang, 0, 2) == "de" then
          ngx.redirect("/de-" .. ngx.var.geoip_country_code .. "/" )
          end
          if string.sub(lang, 0, 2) == "nl" then
          ngx.redirect("/nl-" .. ngx.var.geoip_country_code .. "/"  )
          end
          end
          ngx.redirect("/en-US/")
          ';

}


location / {

 proxy_pass http://hybrisqa;


try_files $uri $uri/ =404;


}

}

答案1

Lua 对此来说太复杂了。最简单的方法是使用map

请注意,映射的一个鲜为人知的属性是,它们可以通过连接来同时检查多个变量。

例如:

map $geoip_country_code$http_accept_language $locale {
    default en-US
    ~^DEde  de-DE
    ~^NLnl  nl-NL
    # ... continue for every supported combination of language and country
}

server {
    location = / {
        return 302 /$locale/;
    }
    # ....

相关内容