mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +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
|
@ -511,14 +511,16 @@ function stream_callbacks.error(context, error)
|
|||
end
|
||||
end
|
||||
|
||||
local GET_response_body = [[<html><body>
|
||||
<p>It works! Now point your BOSH client to this URL to connect to Prosody.</p>
|
||||
<p>For more information see <a href="https://prosody.im/doc/setting_up_bosh">Prosody: Setting up BOSH</a>.</p>
|
||||
</body></html>]];
|
||||
|
||||
local GET_response = {
|
||||
headers = {
|
||||
content_type = "text/html";
|
||||
};
|
||||
body = [[<html><body>
|
||||
<p>It works! Now point your BOSH client to this URL to connect to Prosody.</p>
|
||||
<p>For more information see <a href="https://prosody.im/doc/setting_up_bosh">Prosody: Setting up BOSH</a>.</p>
|
||||
</body></html>]];
|
||||
body = module:get_option_string("bosh_get_response_body", GET_response_body);
|
||||
};
|
||||
|
||||
module:depends("http");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue