mod_http: Skip IP resolution in non-proxied case

Skips doing the whole get_ip_from_request() dance if the request isn't
from a proxy at all, even if the client sent the header for some reason.
This commit is contained in:
Kim Alvefur 2021-02-18 12:00:00 +01:00
parent 269069faa6
commit 80116bf0e3

View file

@ -174,7 +174,7 @@ end
module:wrap_object_event(server._events, false, function (handlers, event_name, event_data)
local request = event_data.request;
if request then
if request and is_trusted_proxy(request.conn:ip()) then
-- Not included in eg http-error events
request.ip = get_ip_from_request(request);
end