mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_websocket: Serve HTTP in global context
This commit is contained in:
parent
c2562cb468
commit
eab76309e8
1 changed files with 10 additions and 9 deletions
|
@ -315,16 +315,17 @@ end
|
||||||
|
|
||||||
module:hook("c2s-read-timeout", keepalive, -0.9);
|
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)
|
function module.add_host(module)
|
||||||
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);
|
module:hook("c2s-read-timeout", keepalive, -0.9);
|
||||||
|
|
||||||
if cross_domain ~= true then
|
if cross_domain ~= true then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue