Nginx根据post参数转发请求 (OpenResty)
最近有个需求,需要nginx根据POST参数将请求转发到不同的后端,调研后决定使用OpenResty(Nginx + Lua)作为代理服务器。写个小Demo:location /test { set $target_url ''; rewrite_by_lua_block { if "POST" == ngx.req.get_method() then ngx.req.read_body() local args = ngx.req.get_body_da