mod_http_files: Fix sending Content-Type for index files

This commit is contained in:
Kim Alvefur 2012-12-23 17:04:44 +01:00
parent 59db48f8cb
commit 360e2a5884

View file

@ -117,7 +117,7 @@ function serve(opts)
module:log("debug", "Could not open or read %s. Error was %s", full_path, err);
return 403;
end
local ext = orig_path:match("%.([^./]+)$");
local ext = full_path:match("%.([^./]+)$");
local content_type = ext and mime_map[ext];
cache[orig_path] = { data = data; content_type = content_type; etag = etag };
response_headers.content_type = content_type;