We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2c9665 commit c0294daCopy full SHA for c0294da
scripts/lua/policies/backendRouting.lua
@@ -57,11 +57,13 @@ function _M.setDynamicRoute(obj)
57
end
58
if utils.tableContains(whitelist, u.host) then
59
ngx.req.set_uri(getUriPath(u.path))
60
- local query = ngx.req.get_uri_args()
61
- for k, v in pairs(u.query) do
62
- query[k] = v
+ -- Split the dynamicBackend url to get the query parameters in the exact order that it was passed in.
+ -- Don't use u.query here because it returns the parameters in an unordered lua table.
+ local split = {string.match(dynamicBackend, '([^?]*)?(.*)')}
63
+ local qs = split[2]
64
+ if qs ~= nil then
65
+ ngx.req.set_uri_args(qs)
66
- ngx.req.set_uri_args(query)
67
setUpstream(u)
68
else
69
request.err(403, 'Dynamic backend host not part of whitelist.')
0 commit comments