修复
This commit is contained in:
parent
933df1aeea
commit
b21f9ef2ba
@ -4,17 +4,17 @@
|
||||
module("luci.controller.frps", package.seeall)
|
||||
|
||||
function index()
|
||||
# 4 个参数介绍
|
||||
# 1.后台访问路径 admin/services/frps
|
||||
# 2.target 动作(call, template, cbi)call 是调用自定义函数,template 调用 html 模板,cbi 调用 openwrt 的公共表单页面
|
||||
# 3.菜单名称
|
||||
# 4.排序
|
||||
-- 4 个参数介绍
|
||||
-- 1.后台访问路径 admin/services/frps
|
||||
-- 2.target 动作(call, template, cbi)call 是调用自定义函数,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
|
||||
|
Loading…
Reference in New Issue
Block a user