mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 22:27:38 +03:00
mod_http_file_share: Return a message from the base URL
This commit is contained in:
parent
49d6a7a91f
commit
900fe6a1cb
1 changed files with 9 additions and 0 deletions
|
@ -435,6 +435,15 @@ module:provides("http", {
|
||||||
route = {
|
route = {
|
||||||
["PUT /*"] = handle_upload;
|
["PUT /*"] = handle_upload;
|
||||||
["GET /*"] = handle_download;
|
["GET /*"] = handle_download;
|
||||||
|
["GET /"] = function (event)
|
||||||
|
return prosody.events.fire_event("http-message", {
|
||||||
|
response = event.response;
|
||||||
|
---
|
||||||
|
title = "Prosody HTTP Upload endpoint";
|
||||||
|
message = "This is where files will be uploaded to, and served from.";
|
||||||
|
warning = not (event.request.secure) and "This endpoint is not considered secure!" or nil;
|
||||||
|
}) or "This is the Prosody HTTP Upload endpoint.";
|
||||||
|
end
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue