summaryrefslogtreecommitdiffstats
path: root/lighttpd-model.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lighttpd-model.lua')
-rw-r--r--lighttpd-model.lua17
1 files changed, 6 insertions, 11 deletions
diff --git a/lighttpd-model.lua b/lighttpd-model.lua
index 53c8310..b8c08e5 100644
--- a/lighttpd-model.lua
+++ b/lighttpd-model.lua
@@ -8,8 +8,7 @@ require("format")
-- Set variables
local processname = "lighttpd"
local packagename = "lighttpd"
-local filelist = {"/etc/lighttpd/lightpd.conf",
-"/etc/lighttpd/mod_cgi.conf"}
+local filelist = {"/etc/lighttpd/lighttpd.conf", "/etc/lighttpd/mod_cgi.conf", "/etc/lighttpd/mod_fastcgi.conf", "/etc/lighttpd/mod_fastcgi_fpm.conf"}
local path = "PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin "
@@ -24,13 +23,11 @@ function startstop_service(action)
end
function getstatus()
- return modelfunctions.getstatus(processname, packagename,
-"Lighttpd Status")
+ return modelfunctions.getstatus(processname, packagename, "Lighttpd Status")
end
function getstatusdetails()
- return cfe({ type="longtext", value="", label="Lighttpd Status
-Details" })
+ return cfe({ type="longtext", value="", label="Lighttpd Status Details" })
end
function getfilelist()
@@ -43,8 +40,7 @@ function getfilelist()
table.sort(listed_files, function (a,b) return (a.filename < b.filename) end )
- return cfe({ type="list", value=listed_files, label="Lighttpd
-File List" })
+ return cfe({ type="list", value=listed_files, label="Lighttpd File List" })
end
function getfiledetails(filename)
@@ -59,14 +55,13 @@ function getlogfile ()
local files = {}
local logfilepath = format.parse_configfile(fs.read_file(filelist[1]) or "").LogFile
if not logfilepath then
- files[#files+1] = {path =
-"/var/log/lighttpd/access.log"}
+ files[#files+1] = {path = "/var/log/lighttpd/access.log"}
else
files[#files+1] = {path=logfilepath}
end
logfilepath = format.parse_configfile(fs.read_file(filelist[2]) or "").UpdateLogFile
if not logfilepath then
- files[#files+1] = {path = "/var/log/eror.log"}
+ files[#files+1] = {path = "/var/log/lighttpd/error.log"}
else
files[#files+1] = {path=logfilepath}
end