From 80116bf0e3cd26cd843b0b18ee09e09469ffa8e3 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Thu, 18 Feb 2021 12:00:00 +0100 Subject: 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. --- plugins/mod_http.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins') diff --git a/plugins/mod_http.lua b/plugins/mod_http.lua index a1d409bd..0a365274 100644 --- a/plugins/mod_http.lua +++ b/plugins/mod_http.lua @@ -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 -- cgit v1.2.3