mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_http_files: Translate forward slashes to local directory separators
This commit is contained in:
parent
a29f12e309
commit
60ca835146
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue