├── .gitignore ├── Others ├── cfw-change-core.md └── warp-install.md ├── README.md ├── Sing-Box ├── Anytls │ └── config.json ├── Hysteria2 │ └── config.json ├── ShadowTLS │ └── config.json ├── TUIC │ └── config.json └── VLESS-XTLS-uTLS-REALITY │ └── config.json ├── VLESS-TCP-TLS-WS-GKE ├── 0gateway.yaml ├── 1http2https.yaml ├── 2config.yaml ├── 3xray-k8s.yaml ├── 4xray-hc.yaml └── 5xray-router.yaml ├── VLESS-TCP-XTLS-Vision-REALITY-WARP ├── server.json └── warp-install.md └── sing-box-install-and-config.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Others/cfw-change-core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhlc/ProxyConfig/HEAD/Others/cfw-change-core.md -------------------------------------------------------------------------------- /Others/warp-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhlc/ProxyConfig/HEAD/Others/warp-install.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhlc/ProxyConfig/HEAD/README.md -------------------------------------------------------------------------------- /Sing-Box/Anytls/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhlc/ProxyConfig/HEAD/Sing-Box/Anytls/config.json -------------------------------------------------------------------------------- /Sing-Box/Hysteria2/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhlc/ProxyConfig/HEAD/Sing-Box/Hysteria2/config.json -------------------------------------------------------------------------------- /Sing-Box/ShadowTLS/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhlc/ProxyConfig/HEAD/Sing-Box/ShadowTLS/config.json -------------------------------------------------------------------------------- /Sing-Box/TUIC/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhlc/ProxyConfig/HEAD/Sing-Box/TUIC/config.json -------------------------------------------------------------------------------- /Sing-Box/VLESS-XTLS-uTLS-REALITY/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhlc/ProxyConfig/HEAD/Sing-Box/VLESS-XTLS-uTLS-REALITY/config.json -------------------------------------------------------------------------------- /VLESS-TCP-TLS-WS-GKE/0gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhlc/ProxyConfig/HEAD/VLESS-TCP-TLS-WS-GKE/0gateway.yaml -------------------------------------------------------------------------------- /VLESS-TCP-TLS-WS-GKE/1http2https.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhlc/ProxyConfig/HEAD/VLESS-TCP-TLS-WS-GKE/1http2https.yaml -------------------------------------------------------------------------------- /VLESS-TCP-TLS-WS-GKE/2config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhlc/ProxyConfig/HEAD/VLESS-TCP-TLS-WS-GKE/2config.yaml -------------------------------------------------------------------------------- /VLESS-TCP-TLS-WS-GKE/3xray-k8s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhlc/ProxyConfig/HEAD/VLESS-TCP-TLS-WS-GKE/3xray-k8s.yaml -------------------------------------------------------------------------------- /VLESS-TCP-TLS-WS-GKE/4xray-hc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhlc/ProxyConfig/HEAD/VLESS-TCP-TLS-WS-GKE/4xray-hc.yaml -------------------------------------------------------------------------------- /VLESS-TCP-TLS-WS-GKE/5xray-router.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhlc/ProxyConfig/HEAD/VLESS-TCP-TLS-WS-GKE/5xray-router.yaml -------------------------------------------------------------------------------- /VLESS-TCP-XTLS-Vision-REALITY-WARP/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhlc/ProxyConfig/HEAD/VLESS-TCP-XTLS-Vision-REALITY-WARP/server.json -------------------------------------------------------------------------------- /VLESS-TCP-XTLS-Vision-REALITY-WARP/warp-install.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sing-box-install-and-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhlc/ProxyConfig/HEAD/sing-box-install-and-config.sh --------------------------------------------------------------------------------