mod_httpserver: Configurable filesystem path to serve from

Mon, 21 Sep 2009 17:57:28 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Mon, 21 Sep 2009 17:57:28 +0100
changeset 1811
e32593074602
parent 1810
4aa5e80d8ce3
child 1812
2683cdaf6dc8

mod_httpserver: Configurable filesystem path to serve from

plugins/mod_httpserver.lua file | annotate | diff | comparison | revisions
--- 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 :(" };

mercurial