diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-07-14 21:04:22 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-07-14 21:04:22 +0100 |
commit | 40f2dda03d4459ebd4e0928e3a671a4024c23b7a (patch) | |
tree | a8c38407c1c8b5346ddb1e4653b881efec0f807b /plugins/mod_httpserver.lua | |
parent | f498cea75470f6b35070018f5b01f893cab36e0c (diff) | |
download | prosody-40f2dda03d4459ebd4e0928e3a671a4024c23b7a.tar.gz prosody-40f2dda03d4459ebd4e0928e3a671a4024c23b7a.zip |
mod_httpserver: Update to use new new_from_config() too
Diffstat (limited to 'plugins/mod_httpserver.lua')
-rw-r--r-- | plugins/mod_httpserver.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_httpserver.lua b/plugins/mod_httpserver.lua index 0f1d991c..a8639281 100644 --- a/plugins/mod_httpserver.lua +++ b/plugins/mod_httpserver.lua @@ -28,4 +28,4 @@ local function handle_request(method, body, request) end local ports = config.get(module.host, "core", "http_ports") or { 5280 }; -httpserver.new_from_config(ports, handle_request); +httpserver.new_from_config(ports, "files", handle_request); |