├── .github ├── build-ipk.sh └── workflows │ ├── build-ipk.yml │ └── rescan-translation.yml ├── LICENSE ├── Makefile ├── README ├── htdocs └── luci-static │ └── resources │ ├── homeproxy.js │ └── view │ └── homeproxy │ ├── client.js │ ├── node.js │ ├── server.js │ └── status.js ├── po ├── templates │ └── homeproxy.pot └── zh_Hans │ └── homeproxy.po └── root ├── etc ├── capabilities │ └── homeproxy.json ├── config │ └── homeproxy ├── homeproxy │ ├── resources │ │ ├── china_ip4.txt │ │ ├── china_ip4.ver │ │ ├── china_ip6.txt │ │ ├── china_ip6.ver │ │ ├── china_list.txt │ │ ├── china_list.ver │ │ ├── gfw_list.txt │ │ └── gfw_list.ver │ └── scripts │ │ ├── clean_log.sh │ │ ├── firewall_post.ut │ │ ├── firewall_pre.ut │ │ ├── generate_client.uc │ │ ├── generate_server.uc │ │ ├── homeproxy.uc │ │ ├── update_crond.sh │ │ ├── update_resources.sh │ │ └── update_subscriptions.uc ├── init.d │ └── homeproxy └── uci-defaults │ ├── luci-homeproxy │ └── luci-homeproxy-migration └── usr └── share ├── luci └── menu.d │ └── luci-app-homeproxy.json └── rpcd ├── acl.d └── luci-app-homeproxy.json └── ucode └── luci.homeproxy /.github/build-ipk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/.github/build-ipk.sh -------------------------------------------------------------------------------- /.github/workflows/build-ipk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/.github/workflows/build-ipk.yml -------------------------------------------------------------------------------- /.github/workflows/rescan-translation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/.github/workflows/rescan-translation.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/README -------------------------------------------------------------------------------- /htdocs/luci-static/resources/homeproxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/htdocs/luci-static/resources/homeproxy.js -------------------------------------------------------------------------------- /htdocs/luci-static/resources/view/homeproxy/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/htdocs/luci-static/resources/view/homeproxy/client.js -------------------------------------------------------------------------------- /htdocs/luci-static/resources/view/homeproxy/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/htdocs/luci-static/resources/view/homeproxy/node.js -------------------------------------------------------------------------------- /htdocs/luci-static/resources/view/homeproxy/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/htdocs/luci-static/resources/view/homeproxy/server.js -------------------------------------------------------------------------------- /htdocs/luci-static/resources/view/homeproxy/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/htdocs/luci-static/resources/view/homeproxy/status.js -------------------------------------------------------------------------------- /po/templates/homeproxy.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/po/templates/homeproxy.pot -------------------------------------------------------------------------------- /po/zh_Hans/homeproxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/po/zh_Hans/homeproxy.po -------------------------------------------------------------------------------- /root/etc/capabilities/homeproxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/root/etc/capabilities/homeproxy.json -------------------------------------------------------------------------------- /root/etc/config/homeproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/root/etc/config/homeproxy -------------------------------------------------------------------------------- /root/etc/homeproxy/resources/china_ip4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/root/etc/homeproxy/resources/china_ip4.txt -------------------------------------------------------------------------------- /root/etc/homeproxy/resources/china_ip4.ver: -------------------------------------------------------------------------------- 1 | 20240602150004 2 | -------------------------------------------------------------------------------- /root/etc/homeproxy/resources/china_ip6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/root/etc/homeproxy/resources/china_ip6.txt -------------------------------------------------------------------------------- /root/etc/homeproxy/resources/china_ip6.ver: -------------------------------------------------------------------------------- 1 | 20240602150004 2 | -------------------------------------------------------------------------------- /root/etc/homeproxy/resources/china_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/root/etc/homeproxy/resources/china_list.txt -------------------------------------------------------------------------------- /root/etc/homeproxy/resources/china_list.ver: -------------------------------------------------------------------------------- 1 | 202406062209 2 | -------------------------------------------------------------------------------- /root/etc/homeproxy/resources/gfw_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/root/etc/homeproxy/resources/gfw_list.txt -------------------------------------------------------------------------------- /root/etc/homeproxy/resources/gfw_list.ver: -------------------------------------------------------------------------------- 1 | 202406062209 2 | -------------------------------------------------------------------------------- /root/etc/homeproxy/scripts/clean_log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/root/etc/homeproxy/scripts/clean_log.sh -------------------------------------------------------------------------------- /root/etc/homeproxy/scripts/firewall_post.ut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/root/etc/homeproxy/scripts/firewall_post.ut -------------------------------------------------------------------------------- /root/etc/homeproxy/scripts/firewall_pre.ut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/root/etc/homeproxy/scripts/firewall_pre.ut -------------------------------------------------------------------------------- /root/etc/homeproxy/scripts/generate_client.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/root/etc/homeproxy/scripts/generate_client.uc -------------------------------------------------------------------------------- /root/etc/homeproxy/scripts/generate_server.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/root/etc/homeproxy/scripts/generate_server.uc -------------------------------------------------------------------------------- /root/etc/homeproxy/scripts/homeproxy.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/root/etc/homeproxy/scripts/homeproxy.uc -------------------------------------------------------------------------------- /root/etc/homeproxy/scripts/update_crond.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/root/etc/homeproxy/scripts/update_crond.sh -------------------------------------------------------------------------------- /root/etc/homeproxy/scripts/update_resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/root/etc/homeproxy/scripts/update_resources.sh -------------------------------------------------------------------------------- /root/etc/homeproxy/scripts/update_subscriptions.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/root/etc/homeproxy/scripts/update_subscriptions.uc -------------------------------------------------------------------------------- /root/etc/init.d/homeproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/root/etc/init.d/homeproxy -------------------------------------------------------------------------------- /root/etc/uci-defaults/luci-homeproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/root/etc/uci-defaults/luci-homeproxy -------------------------------------------------------------------------------- /root/etc/uci-defaults/luci-homeproxy-migration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/root/etc/uci-defaults/luci-homeproxy-migration -------------------------------------------------------------------------------- /root/usr/share/luci/menu.d/luci-app-homeproxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/root/usr/share/luci/menu.d/luci-app-homeproxy.json -------------------------------------------------------------------------------- /root/usr/share/rpcd/acl.d/luci-app-homeproxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/root/usr/share/rpcd/acl.d/luci-app-homeproxy.json -------------------------------------------------------------------------------- /root/usr/share/rpcd/ucode/luci.homeproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulianglin/homeproxy/HEAD/root/usr/share/rpcd/ucode/luci.homeproxy --------------------------------------------------------------------------------