├── .gitignore ├── LICENSE ├── README-fa.md ├── README-zh.md ├── README.md ├── autoupdate.sh ├── bootstrap.sh ├── docker-compose.dev.yml ├── docker-compose.yml ├── docs ├── cloudflare-full-ssl.png ├── logo-complete.png └── logo.png ├── domain.sh ├── generate-rule-files.sh ├── haproxy ├── Dockerfile ├── cert-camouflage.sh ├── certbot-init.sh ├── certbot.sh ├── entrypoint.sh ├── haproxy.cfg └── script.lua ├── init-proxy.legacy.sh ├── init-proxy.sh ├── init.sh ├── libertea-autoupdate-proxy.sh ├── log-parser ├── Dockerfile ├── parse.py ├── run.sh └── summarize.py ├── panel ├── libertea-panel.service ├── panel │ ├── __init__.py │ ├── admin.py │ ├── api.py │ ├── certbot.py │ ├── clash_conf_generator.py │ ├── config.py │ ├── health_check.py │ ├── jwt.py │ ├── settings.py │ ├── stats.py │ ├── subscription_conf_generator.py │ ├── sysops.py │ ├── templates │ │ ├── admin │ │ │ ├── base.jinja │ │ │ ├── dashboard.jinja │ │ │ ├── domain.jinja │ │ │ ├── domains.jinja │ │ │ ├── new_domain.jinja │ │ │ ├── new_secondary_proxy.jinja │ │ │ ├── new_user.jinja │ │ │ ├── proxies.jinja │ │ │ ├── security.jinja │ │ │ ├── settings.jinja │ │ │ ├── user.jinja │ │ │ ├── users.jinja │ │ │ └── welcome │ │ │ │ ├── base.jinja │ │ │ │ ├── camouflage.jinja │ │ │ │ ├── country.jinja │ │ │ │ ├── finished.jinja │ │ │ │ ├── routes-custom.jinja │ │ │ │ ├── routes.jinja │ │ │ │ ├── routes2.jinja │ │ │ │ └── welcome.jinja │ │ ├── cdn-other-udp.yaml │ │ ├── cdn-other.yaml │ │ ├── cloudflare-udp.yaml │ │ ├── cloudflare.yaml │ │ ├── direct-udp.yaml │ │ ├── direct.yaml │ │ ├── groups │ │ │ ├── fallback.yaml │ │ │ ├── healthcheckserver.yaml │ │ │ ├── loadbalance.yaml │ │ │ ├── servergroupfallback.yaml │ │ │ └── urltest.yaml │ │ ├── main-singlefile.yaml │ │ ├── main.yaml │ │ ├── providers │ │ │ ├── servergroup.yaml │ │ │ ├── ss-v2ray.yaml │ │ │ ├── trojan-grpc.yaml │ │ │ ├── trojan-ws.yaml │ │ │ ├── vless-grpc.yaml │ │ │ ├── vless-ws.yaml │ │ │ └── vmess-grpc.yaml │ │ ├── rules.yaml │ │ ├── rules │ │ │ ├── cn-direct.yaml │ │ │ ├── cu-direct.yaml │ │ │ ├── ir-direct.yaml │ │ │ ├── ru-direct.yaml │ │ │ ├── sa-direct.yaml │ │ │ ├── sy-direct.yaml │ │ │ ├── th-direct.yaml │ │ │ ├── tm-direct.yaml │ │ │ └── tr-direct.yaml │ │ ├── tier-udp.yaml │ │ ├── tier.yaml │ │ └── user.jinja │ ├── user.py │ ├── utils.py │ └── welcome.py ├── requirements.txt ├── serve.py └── serve.sh ├── providers ├── shadowsocks-grpc │ ├── Dockerfile │ ├── config.json.sample │ ├── entrypoint.sh │ └── init.sh ├── shadowsocks-v2ray │ ├── Dockerfile │ ├── config.env.sample │ ├── entrypoint.sh │ └── init.sh ├── trojan-grpc │ ├── Dockerfile │ ├── config.json.sample │ ├── entrypoint.sh │ └── init.sh ├── trojan-ws │ ├── Dockerfile │ ├── config.json.sample │ ├── entrypoint.sh │ └── init.sh ├── vless-grpc │ ├── Dockerfile │ ├── config.json.sample │ ├── entrypoint.sh │ └── init.sh ├── vless-ws │ ├── Dockerfile │ ├── config.json.sample │ ├── entrypoint.sh │ └── init.sh └── vmess-grpc │ ├── Dockerfile │ ├── config.json.sample │ ├── entrypoint.sh │ └── init.sh ├── proxy-docker-compose.dev.yml ├── proxy-docker-compose.yml ├── proxy-fake-traffic ├── Dockerfile ├── generate-traffic.sh ├── libertea-proxy-fake-traffic.service └── main.py ├── proxy-haproxy ├── Dockerfile ├── haproxy.https.cfg ├── haproxy.ssh.cfg └── haproxy.tcp.cfg ├── proxy-register ├── Dockerfile ├── libertea-proxy-register.service ├── main.py └── requirements.txt ├── proxy-ssh-tunnel ├── install-services.sh └── template.service ├── push-docker.sh ├── sample.env ├── syslog └── Dockerfile ├── translate.sh ├── user.sh ├── version-proxy.txt └── version.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/LICENSE -------------------------------------------------------------------------------- /README-fa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/README-fa.md -------------------------------------------------------------------------------- /README-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/README-zh.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/README.md -------------------------------------------------------------------------------- /autoupdate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/autoupdate.sh -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/bootstrap.sh -------------------------------------------------------------------------------- /docker-compose.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/docker-compose.dev.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/cloudflare-full-ssl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/docs/cloudflare-full-ssl.png -------------------------------------------------------------------------------- /docs/logo-complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/docs/logo-complete.png -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/docs/logo.png -------------------------------------------------------------------------------- /domain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/domain.sh -------------------------------------------------------------------------------- /generate-rule-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/generate-rule-files.sh -------------------------------------------------------------------------------- /haproxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/haproxy/Dockerfile -------------------------------------------------------------------------------- /haproxy/cert-camouflage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/haproxy/cert-camouflage.sh -------------------------------------------------------------------------------- /haproxy/certbot-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/haproxy/certbot-init.sh -------------------------------------------------------------------------------- /haproxy/certbot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/haproxy/certbot.sh -------------------------------------------------------------------------------- /haproxy/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/haproxy/entrypoint.sh -------------------------------------------------------------------------------- /haproxy/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/haproxy/haproxy.cfg -------------------------------------------------------------------------------- /haproxy/script.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/haproxy/script.lua -------------------------------------------------------------------------------- /init-proxy.legacy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/init-proxy.legacy.sh -------------------------------------------------------------------------------- /init-proxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/init-proxy.sh -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/init.sh -------------------------------------------------------------------------------- /libertea-autoupdate-proxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/libertea-autoupdate-proxy.sh -------------------------------------------------------------------------------- /log-parser/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/log-parser/Dockerfile -------------------------------------------------------------------------------- /log-parser/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/log-parser/parse.py -------------------------------------------------------------------------------- /log-parser/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/log-parser/run.sh -------------------------------------------------------------------------------- /log-parser/summarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/log-parser/summarize.py -------------------------------------------------------------------------------- /panel/libertea-panel.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/libertea-panel.service -------------------------------------------------------------------------------- /panel/panel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/__init__.py -------------------------------------------------------------------------------- /panel/panel/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/admin.py -------------------------------------------------------------------------------- /panel/panel/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/api.py -------------------------------------------------------------------------------- /panel/panel/certbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/certbot.py -------------------------------------------------------------------------------- /panel/panel/clash_conf_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/clash_conf_generator.py -------------------------------------------------------------------------------- /panel/panel/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/config.py -------------------------------------------------------------------------------- /panel/panel/health_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/health_check.py -------------------------------------------------------------------------------- /panel/panel/jwt.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /panel/panel/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/settings.py -------------------------------------------------------------------------------- /panel/panel/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/stats.py -------------------------------------------------------------------------------- /panel/panel/subscription_conf_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/subscription_conf_generator.py -------------------------------------------------------------------------------- /panel/panel/sysops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/sysops.py -------------------------------------------------------------------------------- /panel/panel/templates/admin/base.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/admin/base.jinja -------------------------------------------------------------------------------- /panel/panel/templates/admin/dashboard.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/admin/dashboard.jinja -------------------------------------------------------------------------------- /panel/panel/templates/admin/domain.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/admin/domain.jinja -------------------------------------------------------------------------------- /panel/panel/templates/admin/domains.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/admin/domains.jinja -------------------------------------------------------------------------------- /panel/panel/templates/admin/new_domain.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/admin/new_domain.jinja -------------------------------------------------------------------------------- /panel/panel/templates/admin/new_secondary_proxy.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/admin/new_secondary_proxy.jinja -------------------------------------------------------------------------------- /panel/panel/templates/admin/new_user.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/admin/new_user.jinja -------------------------------------------------------------------------------- /panel/panel/templates/admin/proxies.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/admin/proxies.jinja -------------------------------------------------------------------------------- /panel/panel/templates/admin/security.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/admin/security.jinja -------------------------------------------------------------------------------- /panel/panel/templates/admin/settings.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/admin/settings.jinja -------------------------------------------------------------------------------- /panel/panel/templates/admin/user.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/admin/user.jinja -------------------------------------------------------------------------------- /panel/panel/templates/admin/users.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/admin/users.jinja -------------------------------------------------------------------------------- /panel/panel/templates/admin/welcome/base.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/admin/welcome/base.jinja -------------------------------------------------------------------------------- /panel/panel/templates/admin/welcome/camouflage.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/admin/welcome/camouflage.jinja -------------------------------------------------------------------------------- /panel/panel/templates/admin/welcome/country.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/admin/welcome/country.jinja -------------------------------------------------------------------------------- /panel/panel/templates/admin/welcome/finished.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/admin/welcome/finished.jinja -------------------------------------------------------------------------------- /panel/panel/templates/admin/welcome/routes-custom.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/admin/welcome/routes-custom.jinja -------------------------------------------------------------------------------- /panel/panel/templates/admin/welcome/routes.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/admin/welcome/routes.jinja -------------------------------------------------------------------------------- /panel/panel/templates/admin/welcome/routes2.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/admin/welcome/routes2.jinja -------------------------------------------------------------------------------- /panel/panel/templates/admin/welcome/welcome.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/admin/welcome/welcome.jinja -------------------------------------------------------------------------------- /panel/panel/templates/cdn-other-udp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/cdn-other-udp.yaml -------------------------------------------------------------------------------- /panel/panel/templates/cdn-other.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/cdn-other.yaml -------------------------------------------------------------------------------- /panel/panel/templates/cloudflare-udp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/cloudflare-udp.yaml -------------------------------------------------------------------------------- /panel/panel/templates/cloudflare.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/cloudflare.yaml -------------------------------------------------------------------------------- /panel/panel/templates/direct-udp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/direct-udp.yaml -------------------------------------------------------------------------------- /panel/panel/templates/direct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/direct.yaml -------------------------------------------------------------------------------- /panel/panel/templates/groups/fallback.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/groups/fallback.yaml -------------------------------------------------------------------------------- /panel/panel/templates/groups/healthcheckserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/groups/healthcheckserver.yaml -------------------------------------------------------------------------------- /panel/panel/templates/groups/loadbalance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/groups/loadbalance.yaml -------------------------------------------------------------------------------- /panel/panel/templates/groups/servergroupfallback.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/groups/servergroupfallback.yaml -------------------------------------------------------------------------------- /panel/panel/templates/groups/urltest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/groups/urltest.yaml -------------------------------------------------------------------------------- /panel/panel/templates/main-singlefile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/main-singlefile.yaml -------------------------------------------------------------------------------- /panel/panel/templates/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/main.yaml -------------------------------------------------------------------------------- /panel/panel/templates/providers/servergroup.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /panel/panel/templates/providers/ss-v2ray.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/providers/ss-v2ray.yaml -------------------------------------------------------------------------------- /panel/panel/templates/providers/trojan-grpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/providers/trojan-grpc.yaml -------------------------------------------------------------------------------- /panel/panel/templates/providers/trojan-ws.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/providers/trojan-ws.yaml -------------------------------------------------------------------------------- /panel/panel/templates/providers/vless-grpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/providers/vless-grpc.yaml -------------------------------------------------------------------------------- /panel/panel/templates/providers/vless-ws.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/providers/vless-ws.yaml -------------------------------------------------------------------------------- /panel/panel/templates/providers/vmess-grpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/providers/vmess-grpc.yaml -------------------------------------------------------------------------------- /panel/panel/templates/rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/rules.yaml -------------------------------------------------------------------------------- /panel/panel/templates/rules/cn-direct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/rules/cn-direct.yaml -------------------------------------------------------------------------------- /panel/panel/templates/rules/cu-direct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/rules/cu-direct.yaml -------------------------------------------------------------------------------- /panel/panel/templates/rules/ir-direct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/rules/ir-direct.yaml -------------------------------------------------------------------------------- /panel/panel/templates/rules/ru-direct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/rules/ru-direct.yaml -------------------------------------------------------------------------------- /panel/panel/templates/rules/sa-direct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/rules/sa-direct.yaml -------------------------------------------------------------------------------- /panel/panel/templates/rules/sy-direct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/rules/sy-direct.yaml -------------------------------------------------------------------------------- /panel/panel/templates/rules/th-direct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/rules/th-direct.yaml -------------------------------------------------------------------------------- /panel/panel/templates/rules/tm-direct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/rules/tm-direct.yaml -------------------------------------------------------------------------------- /panel/panel/templates/rules/tr-direct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/rules/tr-direct.yaml -------------------------------------------------------------------------------- /panel/panel/templates/tier-udp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/tier-udp.yaml -------------------------------------------------------------------------------- /panel/panel/templates/tier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/tier.yaml -------------------------------------------------------------------------------- /panel/panel/templates/user.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/templates/user.jinja -------------------------------------------------------------------------------- /panel/panel/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/user.py -------------------------------------------------------------------------------- /panel/panel/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/utils.py -------------------------------------------------------------------------------- /panel/panel/welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/panel/welcome.py -------------------------------------------------------------------------------- /panel/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/requirements.txt -------------------------------------------------------------------------------- /panel/serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/serve.py -------------------------------------------------------------------------------- /panel/serve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/panel/serve.sh -------------------------------------------------------------------------------- /providers/shadowsocks-grpc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/providers/shadowsocks-grpc/Dockerfile -------------------------------------------------------------------------------- /providers/shadowsocks-grpc/config.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/providers/shadowsocks-grpc/config.json.sample -------------------------------------------------------------------------------- /providers/shadowsocks-grpc/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/providers/shadowsocks-grpc/entrypoint.sh -------------------------------------------------------------------------------- /providers/shadowsocks-grpc/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/providers/shadowsocks-grpc/init.sh -------------------------------------------------------------------------------- /providers/shadowsocks-v2ray/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/providers/shadowsocks-v2ray/Dockerfile -------------------------------------------------------------------------------- /providers/shadowsocks-v2ray/config.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/providers/shadowsocks-v2ray/config.env.sample -------------------------------------------------------------------------------- /providers/shadowsocks-v2ray/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/providers/shadowsocks-v2ray/entrypoint.sh -------------------------------------------------------------------------------- /providers/shadowsocks-v2ray/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/providers/shadowsocks-v2ray/init.sh -------------------------------------------------------------------------------- /providers/trojan-grpc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/providers/trojan-grpc/Dockerfile -------------------------------------------------------------------------------- /providers/trojan-grpc/config.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/providers/trojan-grpc/config.json.sample -------------------------------------------------------------------------------- /providers/trojan-grpc/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/providers/trojan-grpc/entrypoint.sh -------------------------------------------------------------------------------- /providers/trojan-grpc/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/providers/trojan-grpc/init.sh -------------------------------------------------------------------------------- /providers/trojan-ws/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/providers/trojan-ws/Dockerfile -------------------------------------------------------------------------------- /providers/trojan-ws/config.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/providers/trojan-ws/config.json.sample -------------------------------------------------------------------------------- /providers/trojan-ws/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/providers/trojan-ws/entrypoint.sh -------------------------------------------------------------------------------- /providers/trojan-ws/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/providers/trojan-ws/init.sh -------------------------------------------------------------------------------- /providers/vless-grpc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/providers/vless-grpc/Dockerfile -------------------------------------------------------------------------------- /providers/vless-grpc/config.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/providers/vless-grpc/config.json.sample -------------------------------------------------------------------------------- /providers/vless-grpc/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/providers/vless-grpc/entrypoint.sh -------------------------------------------------------------------------------- /providers/vless-grpc/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/providers/vless-grpc/init.sh -------------------------------------------------------------------------------- /providers/vless-ws/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/providers/vless-ws/Dockerfile -------------------------------------------------------------------------------- /providers/vless-ws/config.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/providers/vless-ws/config.json.sample -------------------------------------------------------------------------------- /providers/vless-ws/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/providers/vless-ws/entrypoint.sh -------------------------------------------------------------------------------- /providers/vless-ws/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/providers/vless-ws/init.sh -------------------------------------------------------------------------------- /providers/vmess-grpc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/providers/vmess-grpc/Dockerfile -------------------------------------------------------------------------------- /providers/vmess-grpc/config.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/providers/vmess-grpc/config.json.sample -------------------------------------------------------------------------------- /providers/vmess-grpc/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/providers/vmess-grpc/entrypoint.sh -------------------------------------------------------------------------------- /providers/vmess-grpc/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/providers/vmess-grpc/init.sh -------------------------------------------------------------------------------- /proxy-docker-compose.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/proxy-docker-compose.dev.yml -------------------------------------------------------------------------------- /proxy-docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/proxy-docker-compose.yml -------------------------------------------------------------------------------- /proxy-fake-traffic/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/proxy-fake-traffic/Dockerfile -------------------------------------------------------------------------------- /proxy-fake-traffic/generate-traffic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/proxy-fake-traffic/generate-traffic.sh -------------------------------------------------------------------------------- /proxy-fake-traffic/libertea-proxy-fake-traffic.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/proxy-fake-traffic/libertea-proxy-fake-traffic.service -------------------------------------------------------------------------------- /proxy-fake-traffic/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/proxy-fake-traffic/main.py -------------------------------------------------------------------------------- /proxy-haproxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/proxy-haproxy/Dockerfile -------------------------------------------------------------------------------- /proxy-haproxy/haproxy.https.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/proxy-haproxy/haproxy.https.cfg -------------------------------------------------------------------------------- /proxy-haproxy/haproxy.ssh.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/proxy-haproxy/haproxy.ssh.cfg -------------------------------------------------------------------------------- /proxy-haproxy/haproxy.tcp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/proxy-haproxy/haproxy.tcp.cfg -------------------------------------------------------------------------------- /proxy-register/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/proxy-register/Dockerfile -------------------------------------------------------------------------------- /proxy-register/libertea-proxy-register.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/proxy-register/libertea-proxy-register.service -------------------------------------------------------------------------------- /proxy-register/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/proxy-register/main.py -------------------------------------------------------------------------------- /proxy-register/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | psutil 3 | -------------------------------------------------------------------------------- /proxy-ssh-tunnel/install-services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/proxy-ssh-tunnel/install-services.sh -------------------------------------------------------------------------------- /proxy-ssh-tunnel/template.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/proxy-ssh-tunnel/template.service -------------------------------------------------------------------------------- /push-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/push-docker.sh -------------------------------------------------------------------------------- /sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/sample.env -------------------------------------------------------------------------------- /syslog/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/syslog/Dockerfile -------------------------------------------------------------------------------- /translate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/translate.sh -------------------------------------------------------------------------------- /user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VZiChoushaDui/Libertea/HEAD/user.sh -------------------------------------------------------------------------------- /version-proxy.txt: -------------------------------------------------------------------------------- 1 | 1007 2 | -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 1043 2 | --------------------------------------------------------------------------------