希望有人可以帮助我。
以下情况:
我有一个NGINX反向代理,并且需要一个针对端点/myEndpoint
的特殊规则。特殊规则必须解析传入的POST请求的主体(或有效负载)。我想做这样的事情:
location /myEndpoint {
if ($request_method = POST ) {
Parse Body (RAW Text);
Grab Value1 and put into $Variable1;
}
proxy_pass https://myBackEndServer/backendEndpoint?action=$Variable1;
proxy_method GET;
有人可以帮我解决我的问题吗?
感谢您对高级的帮助