mod_http_files: Strip trailing directory separator regardless of directionality of the slash (fixes #545)

This commit is contained in:
Kim Alvefur 2015-09-26 19:34:58 +02:00
parent a10c1e367f
commit a29f12e309

View file

@ -62,7 +62,7 @@ function serve(opts)
local request, response = event.request, event.response;
local orig_path = request.path;
local full_path = base_path .. (path and "/"..path or "");
local attr = stat((full_path:gsub('%'..path_sep..'+$','')));
local attr = stat(full_path:match("^.*[^\\/]")); -- Strip trailing path separator because Windows
if not attr then
return 404;
end