繁体   English   中英

基于请求正文内容的nginx条件代理传递

[英]nginx conditional proxy pass based on request body content

我正在尝试将 nginx 配置为代理将请求传递到另一台服务器,前提是 $request_body 变量与特定的正则表达式匹配。但这对我不起作用。

 server{
        listen 80 default;
        server_name www.applozic.com;

        location / {
                 proxy_set_header X-Real-IP $remote_addr;
                 proxy_set_header X-Forwarded-For $remote_addr;
                 proxy_set_header Host $http_host;

                if ($request_body ~* (.*)appId(.*)) {
                   proxy_pass http://apps.applozic.com;
                }
        }

}

请求正文是::

              {
               "applicationId": "appId",
               "authenticationTypeId": 1,
               "enableEncryption": false,
               "notificationMode": 0,
               "deviceType": 4,
              }

我找到了解决方案。

我在 nginx(open resty) 配置文件中做了以下更改

upstream algoapp {
   server 127.0.0.0.1:543;
}
upstream main {
   server 127.0.0.1:443;
}

location /rest/ws/login {
   proxy_set_header X-Forwarded-Host $host;
   proxy_set_header X-Forwarded-Server $host;
   proxy_set_header X-Real-IP $remote_addr;
   proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
   proxy_set_header X-Url-Scheme $scheme;
   proxy_set_header X-Forwarded-Proto $scheme;
   proxy_set_header Host $http_host;
   proxy_redirect off;
   if ($request_method = OPTIONS ) {
   proxy_pass https://127.0.0.1:543;
   }
   if ($request_method = POST ) {
   set $upstream '';
   access_by_lua '
   ngx.req.read_body()
   local data = ngx.req.get_body_data()
   local  match = ngx.re.match(ngx.var.request_body, "appId")
   if match then
      ngx.var.upstream = "algoapp"
   else
   ngx.var.upstream = "main"
   end
   ';
   proxy_pass https://$upstream;
   }
}

尽我所能告诉问题是变量$request_body在执行 if 语句时可能尚未读入内存。

建议的替代方案是使用 lua 支持或使用 echo 模块编译 nginx 并运行 echo_request_body

在使用集成时这并不容易,比如在某些情况下你的 nginx 并不允许你做额外的代理来改变整个设计,那么你可以尝试nginx-if-request-body来实现结果

http {
 ....
     
 map "$uri" $forward_status {
    default 100; # 100 means nothing return, continue to proxy phase
    "~*.+?\.(css|js|bmp|gif|ico|jpeg|jpg|pict|png|svg|swf|tif)$" 418;
 }
 map "$request_body" $forward_status_by_body {
    default 100;
    "abc123xxx" 418;
    "~*.+?\.(css|js|bmp|gif|ico|jpeg|jpg|pict|png|svg|swf|tif)$" 418;
  }

server {
 ...
    error_page 418 =200 @welcome_if_request_body;

    location @welcome_if_request_body {
        add_header Content-Type text/plain;
        return 200 "welcome_if_request_body, you hit it";
    }

    location = / {
        if_request_body on;
        return_status_if_body_eq "ASD" 418 on;
        return_status_if_body_eq "foo" 418;
        return_status_if_body_eq "john" 418;
        return_status_if_body_startswith "report" 418;
        return_status_if_body_contains "report" 418;
        return_status_if_body_regex "^[\d]+?abc" 418;
        return_status_if_variable_map_to $forward_status;
        return_status_if_variable_map_to $forward_status_by_body;
        proxy_pass http://localhost:7777;

    }
...
  }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM