Skip to content

Commit

Permalink
Update node_proxy.lua (#3776)
Browse files Browse the repository at this point in the history
completed the fix of the issue #3730
  • Loading branch information
giuliolibrando authored and ashton22305 committed Sep 19, 2024
1 parent b59e711 commit dce40d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mod_ood_proxy/lib/node_proxy.lua
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function node_proxy_handler(r)
local conn = {}
conn.user = user
conn.server = host .. ":" .. port
conn.uri = uri and (r.args and (uri .. "?" .. r.args) or uri) or r.unparsed_uri
conn.uri = uri and (r.args and (uri .. "?" .. r.args) or uri) or r.uri

-- last ditch effort to ensure that the uri is at least something
-- because the request-line of an HTTP request _has_ to have something for a URL
Expand Down

0 comments on commit dce40d9

Please sign in to comment.