diff options
author | Steven Barth <steven@midlink.org> | 2008-12-14 11:54:49 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-12-14 11:54:49 +0000 |
commit | f9a04e040f78a98071eae377728278b992925678 (patch) | |
tree | 0fbb9bd5a1194ed1b8d09846e113343e4b19542b /modules/admin-full/luasrc/model | |
parent | 7b0d00bb77298d7222ede60aa0a2dc5347fd1a7b (diff) |
LuCIttpd configuration pages
Diffstat (limited to 'modules/admin-full/luasrc/model')
-rw-r--r-- | modules/admin-full/luasrc/model/cbi/admin_services/lucittpd.lua | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/modules/admin-full/luasrc/model/cbi/admin_services/lucittpd.lua b/modules/admin-full/luasrc/model/cbi/admin_services/lucittpd.lua new file mode 100644 index 000000000..35d8650bf --- /dev/null +++ b/modules/admin-full/luasrc/model/cbi/admin_services/lucittpd.lua @@ -0,0 +1,25 @@ +--[[ +LuCI - Lua Configuration Interface + +Copyright 2008 Steven Barth <steven@midlink.org> +Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net> + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +$Id$ +]]-- +m = Map("lucittpd", "LuCIttpd", translate("a_srv_lucittpd")) + +s = m:section(NamedSection, "lucittpd", "lucittpd", "") + +s:option(Value, "port", translate("port")) +s:option(Value, "root", translate("a_srv_http_root")) +s:option(Value, "path", translate("a_srv_http_path")) +s:option(Flag, "keepalive", translate("a_srv_http_keepalive")) +s:option(Value, "timeout", translate("a_srv_http_timeout")) + +return m |