aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_http_files.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2014-03-09 23:47:53 +0100
committerKim Alvefur <zash@zash.se>2014-03-09 23:47:53 +0100
commit9ea9c5719a2275b3ae66378619cef64a392a1fec (patch)
treee200875dd171732b5fcd8da80a7b225b72c89491 /plugins/mod_http_files.lua
parent42c4183e34f2a15920d3df042eed5531b552c495 (diff)
parentf666a0d9340519bc839fa97f2f9d5e6e8cad9cdb (diff)
downloadprosody-9ea9c5719a2275b3ae66378619cef64a392a1fec.tar.gz
prosody-9ea9c5719a2275b3ae66378619cef64a392a1fec.zip
Merge 0.9->0.10
Diffstat (limited to 'plugins/mod_http_files.lua')
-rw-r--r--plugins/mod_http_files.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/mod_http_files.lua b/plugins/mod_http_files.lua
index dd04853b..2e9f4182 100644
--- a/plugins/mod_http_files.lua
+++ b/plugins/mod_http_files.lua
@@ -14,6 +14,7 @@ local os_date = os.date;
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 @@ 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);
+ local attr = stat((full_path:gsub('%'..path_sep..'+$','')));
if not attr then
return 404;
end