mod_http_file_share: Return a message from the base URL

This commit is contained in:
Kim Alvefur 2021-02-21 06:49:11 +01:00
parent 49d6a7a91f
commit 900fe6a1cb

View file

@ -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