diff options
author | Steven Barth <steven@midlink.org> | 2008-06-23 21:49:29 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-06-23 21:49:29 +0000 |
commit | 623eb2648635273153988d94b1ac38f9bbe892b0 (patch) | |
tree | bf6e7943133798f4c6e1ce0da5eb3989b18cc410 /libs/sgi-luci/root/usr/bin | |
parent | df8f52494072926e86f590bbd6fc2589441f7772 (diff) |
* Added preliminary OpenWRT support for luci-httpd
Diffstat (limited to 'libs/sgi-luci/root/usr/bin')
-rwxr-xr-x | libs/sgi-luci/root/usr/bin/luci-httpd | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/libs/sgi-luci/root/usr/bin/luci-httpd b/libs/sgi-luci/root/usr/bin/luci-httpd new file mode 100755 index 0000000000..7f2ee50fa5 --- /dev/null +++ b/libs/sgi-luci/root/usr/bin/luci-httpd @@ -0,0 +1,33 @@ +#!/usr/bin/lua +require("luci.httpd") +require("luci.httpd.server") +require("luci.httpd.handler.file") +require("luci.httpd.handler.luci") + +DOCROOT = "/www" +PORT = 8080 + +collectgarbage("setpause", 150) + +serversocket = luci.httpd.Socket("0.0.0.0", PORT) + + +server = luci.httpd.server.Server() +vhost = luci.httpd.server.VHost() + +server:set_default_vhost(vhost) + + +filehandler = luci.httpd.handler.file.Simple(DOCROOT) +vhost:set_default_handler(filehandler) + +lucihandler = luci.httpd.handler.luci.Luci() +vhost:set_handler("/luci", lucihandler) + +io.stderr:write("Starting LuCI HTTPD on port " .. PORT .. "...\n") +io.stderr:write("Point your browser to http://localhost:" .. PORT .. "/luci\n") + +daemon = luci.httpd.Daemon() +--daemon.debug = true +daemon:register(serversocket, server:create_daemon_handlers()) +daemon:run() |