mod_http_files: Translate forward slashes to local directory separators

This commit is contained in:
Kim Alvefur 2015-09-26 19:35:56 +02:00
parent a29f12e309
commit 60ca835146

View file

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