mod_http_errors: Set status code 200 from root page

It isn't quite an error.
This commit is contained in:
Kim Alvefur 2021-07-09 22:06:58 +02:00
parent b24d7fe90d
commit 4439ef50e4

View file

@ -98,6 +98,7 @@ local icon = [[
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.status_code = 200;
response.headers.content_type = "text/html; charset=utf-8";
local message = messages["/"];
return render(html, {