mod_http_errors: Show a friendly page instead of 404 on top level

This commit is contained in:
Kim Alvefur 2019-11-17 16:16:53 +01:00
parent 8703eaa89a
commit dfa2bdffc0

View file

@ -75,3 +75,15 @@ module:hook_object_event(server, "http-error", function (event)
end
return get_page(event.code, (show_private and event.private_message) or event.message);
end);
module:hook_object_event(server, "http-error", function (event)
local request, response = event.request, event.response;
if request and response and request.path == "/" and response.status_code == 404 then
response.headers.content_type = "text/html; charset=utf-8";
return render(html, {
title = "Prosody is running!";
message = "Welcome to the XMPP world!";
});
end
end, 1);