通过URL参数请求不同的后端服务器

栏目: 后端 · 前端 · 发布时间: 5年前

内容简介:内网通过K8S搭建多个分支测试环境,可是如果外网需要访问而且域名都是一致的情况下,这个时候变得麻烦了。如何通过不同的请求参数访问不同的后端环境呢,答案是可以的,通过lua可以达到。入口:

内网通过K8S搭建多个分支测试环境,可是如果外网需要访问而且域名都是一致的情况下,这个时候变得麻烦了。如何通过不同的请求参数访问不同的后端环境呢,答案是可以的,通过 lua 可以达到。

入口:

http://fengwan.blog.51cto.com/?envs=branches #branches环境

http://fengwan.blog.51cto.com/?envs=branchesv2 #branchesv2环境

另外考虑到APP请求的时候无法通过参数来处理,我们可以添加统一的请求header: envs

curl --header "envs:branches" http://fengwan.blog.51cto.com

curl --header "envs:branchesv2" http://fengwan.blog.51cto.com

我们通过Openresty判断头部然后选择不同的后端环境

Nginx配置:

upstream branches {
        server 10.254.220.47:80;
    }
    upstream branchesv2 {
        server 10.254.60.225:80;
    }

    upstream default {
        server  10.254.220.47:80;
    }
            server {
        listen       80;
        server_name  fengwan.blog.51cto.com;
        location / {
                lua_code_cache on;
                set $upstreamhost "";
                rewrite_by_lua_file /etc/nginx/conf.d/html/proxy.lua;

                proxy_redirect off ;
               proxy_set_header Host $host;
               proxy_set_header X-Real-IP $remote_addr;
               proxy_set_header REMOTE-HOST $remote_addr;
               proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
               client_max_body_size 50m;
               client_body_buffer_size 256k;
               proxy_connect_timeout 30;
               proxy_send_timeout 30;
               proxy_read_timeout 60;
               proxy_buffer_size 256k;
               proxy_buffers 4 256k;
               proxy_busy_buffers_size 256k;
               proxy_temp_file_write_size 256k;
               proxy_next_upstream error timeout invalid_header http_500 http_503 http_404;
               proxy_max_temp_file_size 128m;

                proxy_pass http://$upstreamhost;
        }
   }

lua脚本内容

/etc/nginx/conf.d/html/proxy.lua;

local request_method = ngx.var.request_method
local args = nil
local param = nil
local param2 = nil

if "GET" == request_method then
    args = ngx.req.get_uri_args()
elseif "POST" == request_method then
    ngx.req.read_body()
    args = ngx.req.get_post_args()
end

if ngx.var.cookie_envs == 'branches' then
        ngx.var.upstreamhost = "branches"
elseif ngx.var.cookie_envs == 'branchesv2' then
        ngx.var.upstreamhost = "branchesv2"
end

if not args or not args["envs"] then
        if not ngx.req.get_headers()['envs'] then
                ngx.var.upstreamhost = "default"
        elseif ngx.req.get_headers()['envs'] == 'branches' then
                ngx.var.upstreamhost = "branches"
        elseif ngx.req.get_headers()['envs'] == 'branchesv2' then
                ngx.var.upstreamhost = "branchesv2"
        else
                ngx.var.upstreamhost = "tags"
        end
elseif args["envs"] == 'branches' then
        ngx.header["Set-Cookie"]= "envs=branches; path=/"
        ngx.var.upstreamhost = "branches"
elseif  args["envs"] == 'branchesv2' then
        ngx.header["Set-Cookie"]= "envs=branchesv2; Path=/"
        ngx.var.upstreamhost = "branchesv2"
end

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

游戏编程中的人工智能技术

游戏编程中的人工智能技术

布克兰德 / 吴祖增 / 清华大学出版社 / 2006-5 / 39.0

《游戏编程中的人工智能技术》是人工智能游戏编程的一本指南性读物,介绍在游戏开发中怎样应用遗传算法和人工神经网络来创建电脑游戏中所需要的人工智能。书中包含了许多实用例子,所有例子的完整源码和可执行程序都能在随书附带的光盘上找到。光盘中还有不少其他方面的游戏开发资料和一个赛车游戏演示软件。 《游戏编程中的人工智能技术》适合遗传算法和人工神经网络等人工智能技术的各行业人员,特别是要实际动手做应用开......一起来看看 《游戏编程中的人工智能技术》 这本书的介绍吧!

URL 编码/解码
URL 编码/解码

URL 编码/解码

SHA 加密
SHA 加密

SHA 加密工具

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换