mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +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 = {
|
||||
["PUT /*"] = handle_upload;
|
||||
["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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue