mod_httpserver: Update to use new new_from_config() too

This commit is contained in:
Matthew Wild 2009-07-14 21:04:22 +01:00
parent f498cea754
commit 40f2dda03d

View file

@ -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);