mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
net.http.server: Move handling of hosts to mod_http
Now an event like `GET /path` is fired at first, and mod\_http dispatches the old `GET host/path` events.
This commit is contained in:
parent
2fcacff9a7
commit
c6540b14f9
2 changed files with 8 additions and 2 deletions
|
@ -172,7 +172,13 @@ module:wrap_object_event(server._events, false, function (handlers, event_name,
|
|||
-- Not included in eg http-error events
|
||||
request.ip = get_ip_from_request(request);
|
||||
end
|
||||
return handlers(event_name, event_data);
|
||||
local ret = handlers(event_name, event_data);
|
||||
if ret ~= nil then
|
||||
return ret;
|
||||
end
|
||||
local host = (request.headers.host or ""):match("[^:]+");
|
||||
local host_event = request.method.." "..host..request.path:match("[^?]*");
|
||||
return handlers(host_event, event_data);
|
||||
end);
|
||||
|
||||
module:provides("net", {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue