├── .github ├── .config_arm64 ├── .config_x64 ├── .config_x86 └── workflows │ ├── build-nezha.yml │ └── update-checker.yml ├── LICENSE ├── README.md ├── luci-app-nezha ├── Makefile ├── luasrc │ ├── controller │ │ └── nezha-agent.lua │ ├── model │ │ └── cbi │ │ │ └── nezha-agent.lua │ └── view │ │ └── nezha-agent │ │ └── nezha-agent_status.htm └── root │ └── etc │ ├── config │ └── nezha-agent │ ├── init.d │ └── nezha-agent │ └── uci-defaults │ └── luci-nezha-agent └── openwrt-nezha └── Makefile /.github/.config_arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erope/openwrt_nezha/HEAD/.github/.config_arm64 -------------------------------------------------------------------------------- /.github/.config_x64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erope/openwrt_nezha/HEAD/.github/.config_x64 -------------------------------------------------------------------------------- /.github/.config_x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erope/openwrt_nezha/HEAD/.github/.config_x86 -------------------------------------------------------------------------------- /.github/workflows/build-nezha.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erope/openwrt_nezha/HEAD/.github/workflows/build-nezha.yml -------------------------------------------------------------------------------- /.github/workflows/update-checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erope/openwrt_nezha/HEAD/.github/workflows/update-checker.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erope/openwrt_nezha/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erope/openwrt_nezha/HEAD/README.md -------------------------------------------------------------------------------- /luci-app-nezha/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erope/openwrt_nezha/HEAD/luci-app-nezha/Makefile -------------------------------------------------------------------------------- /luci-app-nezha/luasrc/controller/nezha-agent.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erope/openwrt_nezha/HEAD/luci-app-nezha/luasrc/controller/nezha-agent.lua -------------------------------------------------------------------------------- /luci-app-nezha/luasrc/model/cbi/nezha-agent.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erope/openwrt_nezha/HEAD/luci-app-nezha/luasrc/model/cbi/nezha-agent.lua -------------------------------------------------------------------------------- /luci-app-nezha/luasrc/view/nezha-agent/nezha-agent_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erope/openwrt_nezha/HEAD/luci-app-nezha/luasrc/view/nezha-agent/nezha-agent_status.htm -------------------------------------------------------------------------------- /luci-app-nezha/root/etc/config/nezha-agent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erope/openwrt_nezha/HEAD/luci-app-nezha/root/etc/config/nezha-agent -------------------------------------------------------------------------------- /luci-app-nezha/root/etc/init.d/nezha-agent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erope/openwrt_nezha/HEAD/luci-app-nezha/root/etc/init.d/nezha-agent -------------------------------------------------------------------------------- /luci-app-nezha/root/etc/uci-defaults/luci-nezha-agent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erope/openwrt_nezha/HEAD/luci-app-nezha/root/etc/uci-defaults/luci-nezha-agent -------------------------------------------------------------------------------- /openwrt-nezha/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erope/openwrt_nezha/HEAD/openwrt-nezha/Makefile --------------------------------------------------------------------------------