Software /
code /
prosody
Diff
plugins/mod_http_files.lua @ 6031:8796aa94c4b5
Merge 0.9->0.10
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 09 Mar 2014 23:47:53 +0100 |
parent | 5776:bd0ff8ae98a8 |
parent | 6030:9b91242cc137 |
child | 6887:da38775bda82 |
line wrap: on
line diff
--- a/plugins/mod_http_files.lua Wed Feb 26 22:21:55 2014 +0100 +++ b/plugins/mod_http_files.lua Sun Mar 09 23:47:53 2014 +0100 @@ -14,6 +14,7 @@ local open = io.open; local stat = lfs.attributes; local build_path = require"socket.url".build_path; +local path_sep = package.config:sub(1,1); local base_path = module:get_option_string("http_files_dir", module:get_option_string("http_path")); local dir_indices = module:get_option("http_index_files", { "index.html", "index.htm" }); @@ -61,7 +62,7 @@ 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); + local attr = stat((full_path:gsub('%'..path_sep..'+$',''))); if not attr then return 404; end