mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_bosh,mod_websocket: Make into global-shared modules (...again)
Global modules aren't quite considered loaded onto hosts, which causes confusion in some cases. They are also reported in the log as being served on http://*:5280/foo which is also a bit confusing, and can't be clicked. Global modules also have to have their paths configured in the global section, which could be confusing and unexpected. This global+shared method should be the best of both worlds.
This commit is contained in:
parent
8bde7461c1
commit
e7df432614
2 changed files with 28 additions and 22 deletions
|
@ -348,18 +348,20 @@ local function keepalive(event)
|
|||
end
|
||||
end
|
||||
|
||||
module:hook("c2s-read-timeout", keepalive, -0.9);
|
||||
|
||||
module:depends("http");
|
||||
module:provides("http", {
|
||||
name = "websocket";
|
||||
default_path = "xmpp-websocket";
|
||||
route = {
|
||||
["GET"] = handle_request;
|
||||
["GET /"] = handle_request;
|
||||
};
|
||||
});
|
||||
|
||||
function module.add_host(module)
|
||||
module:hook("c2s-read-timeout", keepalive, -0.9);
|
||||
|
||||
module:depends("http");
|
||||
module:provides("http", {
|
||||
name = "websocket";
|
||||
default_path = "xmpp-websocket";
|
||||
route = {
|
||||
["GET"] = handle_request;
|
||||
["GET /"] = handle_request;
|
||||
};
|
||||
});
|
||||
|
||||
module:hook("c2s-read-timeout", keepalive, -0.9);
|
||||
end
|
||||
|
||||
module:add_host();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue