mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_bosh, mod_websocket: Add config options to override GET responses
This commit is contained in:
parent
a63e5be1b7
commit
ff9bdefc7e
2 changed files with 13 additions and 7 deletions
|
@ -130,6 +130,12 @@ local function filter_open_close(data)
|
|||
|
||||
return data;
|
||||
end
|
||||
|
||||
local default_get_response_body = [[<!DOCTYPE html><html><head><title>Websocket</title></head><body>
|
||||
<p>It works! Now point your WebSocket client to this URL to connect to Prosody.</p>
|
||||
</body></html>]]
|
||||
local websocket_get_response_body = module:get_option_string("websocket_get_response_body", default_get_response_body)
|
||||
|
||||
function handle_request(event)
|
||||
local request, response = event.request, event.response;
|
||||
local conn = response.conn;
|
||||
|
@ -138,9 +144,7 @@ function handle_request(event)
|
|||
|
||||
if not request.headers.sec_websocket_key or request.method ~= "GET" then
|
||||
response.headers.content_type = "text/html";
|
||||
return [[<!DOCTYPE html><html><head><title>Websocket</title></head><body>
|
||||
<p>It works! Now point your WebSocket client to this URL to connect to Prosody.</p>
|
||||
</body></html>]];
|
||||
return websocket_get_response_body;
|
||||
end
|
||||
|
||||
local wants_xmpp = contains_token(request.headers.sec_websocket_protocol or "", "xmpp");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue