我有一个我无法修改的客户端程序。它会在WAN链接上生成包含数百个变量的大型POST(x-www-form-urlencoded)请求,但我只需要其中的5个。我在本地客户端系统上插入nginx作为反向代理。什么是最容易让nginx删除额外数据?
到目前为止我看到的两种方式: 1.使用Lua(如果我这样做,我应该做content_by_lua,重写身体,然后进行子请求吗?还是有更简单的方法?) 2.使用form-input-nginx-module和proxy_set_body解析并获取一些变量。
我已经在使用OpenResty了,所以Lua意味着没有额外的模块。但是,它可能意味着要编写更多的位置等等来进行子请求。
答案 0 :(得分:3)
在我看来,最简单的方法是使用lua。在content_by_lua,rewrite_by_lua,access_by_lua或它们的任意组合之间进行选择;将取决于您如何使用子请求的响应主体。该决定还将决定您是否需要其他地点。
以下是几个例子:
<强> 1。 content_by_lua定位到本地位置。
(这种方法需要定义子请求位置)
location /original/url {
lua_need_request_body on;
content_by_lua '
--Lots of params but I only need 5 for the subrequest
local limited_post_args, err = ngx.req.get_post_args(5)
if not limited_post_args then
ngx.say("failed to get post args: ", err)
return
end
local subreq_uri = "/test/local"
local subreq_response = ngx.location.capture(subreq_uri, {method=ngx.HTTP_POST,
body = ngx.encode_args(limited_post_args)})
ngx.print(subreq_response.body)
';
}
location ~/test/local {
lua_need_request_body on;
proxy_set_header Accept-Encoding "";
proxy_pass http://echo.200please.com;
}
<强> 2。 with rewrite_by_lua到远程目标 (不需要额外的位置)
location /original/url/to/remote {
lua_need_request_body on;
rewrite_by_lua '
--Lost of params but I only need 5 for the subrequest
local limited_post_args, err = ngx.req.get_post_args(5)
if not limited_post_args then
ngx.say("failed to get post args: ", err)
return
end
--setting limited number of params
ngx.req.set_body_data(ngx.encode_args(limited_post_args))
--rewriting url
local subreq_path = "/test"
ngx.req.set_uri(subreq_path)
';
proxy_pass http://echo.200please.com;
}
7个args限制为5的示例发布请求:
curl 'http://localhost/original/url/to/remote' --data 'param1=test¶m2=2¶m3=3¶m4=4¶m5=5¶m6=6¶m7=7' --compressed
响应:
POST /test HTTP/1.0
Host: echo.200please.com
Connection: close
Content-Length: 47
User-Agent: curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 NSS/3.14.0.0 zlib/1.2.3 libidn/1.18 libssh2/1.4.2
Accept: */*
Accept-Encoding: deflate, gzip
Content-Type: application/x-www-form-urlencoded
param3=3¶m4=4¶m1=test¶m2=2¶m5=5