This commit is contained in:
WindyMadman 2024-08-30 13:19:40 +08:00
parent 933df1aeea
commit b21f9ef2ba

View File

@ -4,17 +4,17 @@
module("luci.controller.frps", package.seeall)
function index()
# 4
# 1.访 admin/services/frps
# 2.target call, template, cbicall template html cbi openwrt
# 3.
# 4.
-- 4 个参数介
-- 1.后台访问路径 admin/services/frps
-- 2.target 动作call, template, cbicall 是调用自定义函数template 调用 html 模板cbi 调用 openwrt 的公共表单页
-- 3.菜单名
-- 4.排
#
--检查配置文件是否存
if not nixio.fs.access("/etc/config/frps") then
return
end
#
--注册页
entry({"admin", "services", "frps"}, alias("admin", "services", "frps", "common"), _("Frp Server"), 99).dependent = true
entry({"admin", "services", "frps", "common"}, cbi("frps/common"), _("Settings"), 1).leaf = true
entry({"admin", "services", "frps", "server"}, cbi("frps/server"), _("Server"), 2).leaf = true
@ -24,11 +24,11 @@ end
function action_status()
local e = {}
#
--获取进程运行状
e.running = luci.sys.call("pidof frps >/dev/null") == 0
#frps版本
--获取frps版本
e.bin_version = luci.sys.exec("frps -v")
luci.http.prepare_content("application/json")
#JSON格式数据
--返回JSON格式数据
luci.http.write_json(e)
end