mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_http: Consider x-forwarded-proto from trusted proxies
Should be better than setting consider_{bosh,websocket}_secure as that may end up causing actually insecure requests to be considered secure. Doing it here, as with IP, should make this apply to all HTTP modules.
This commit is contained in:
parent
4b4636ae65
commit
362c228c47
1 changed files with 4 additions and 0 deletions
|
@ -259,6 +259,10 @@ module:wrap_object_event(server._events, false, function (handlers, event_name,
|
|||
if request and is_trusted_proxy(request.conn:ip()) then
|
||||
-- Not included in eg http-error events
|
||||
request.ip = get_ip_from_request(request);
|
||||
|
||||
if not request.secure and request.headers.x_forwarded_proto == "https" then
|
||||
request.secure = true;
|
||||
end
|
||||
end
|
||||
return handlers(event_name, event_data);
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue