Software /
code /
prosody
Diff
plugins/mod_httpserver.lua @ 1812:e32593074602
mod_httpserver: Configurable filesystem path to serve from
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Mon, 21 Sep 2009 17:57:28 +0100 |
parent | 1770:3e17002221eb |
child | 1816:1c0bde3db7d8 |
line wrap: on
line diff
--- a/plugins/mod_httpserver.lua Mon Sep 21 15:10:36 2009 +0100 +++ b/plugins/mod_httpserver.lua Mon Sep 21 17:57:28 2009 +0100 @@ -13,7 +13,7 @@ local t_concat = table.concat; local check_http_path; -local http_base = "www_files"; +local http_base = config.get("*", "core", "http_path") or "www_files"; local response_403 = { status = "403 Forbidden", body = "<h1>Invalid URL</h1>Sorry, we couldn't find what you were looking for :(" }; local response_404 = { status = "404 Not Found", body = "<h1>Page Not Found</h1>Sorry, we couldn't find what you were looking for :(" };