diff options
author | Kim Alvefur <zash@zash.se> | 2015-09-26 19:35:56 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2015-09-26 19:35:56 +0200 |
commit | 8caf3cf4120e361e27c4eff6c9ad93a59589425c (patch) | |
tree | 12066b15cdef9e6b6cc9ec49861e0acaff5c194e /plugins | |
parent | c6d0454e0f3c4b47ae37903727d8bec8926cacae (diff) | |
download | prosody-8caf3cf4120e361e27c4eff6c9ad93a59589425c.tar.gz prosody-8caf3cf4120e361e27c4eff6c9ad93a59589425c.zip |
mod_http_files: Translate forward slashes to local directory separators
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_http_files.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_http_files.lua b/plugins/mod_http_files.lua index 9d81f540..9839fed9 100644 --- a/plugins/mod_http_files.lua +++ b/plugins/mod_http_files.lua @@ -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; |