├── .github └── workflows │ └── dh_pub.yml ├── .gitignore ├── LICENSE ├── README.md ├── blob ├── dnscrypt-proxy │ └── dnscrypt-proxy.toml ├── doh-server │ ├── doh-server.rc │ ├── doh-server.service │ └── doh-server@.service ├── hysteria │ ├── hysteria-server.rc │ ├── hysteria-server.service │ ├── hysteria-server@.service │ ├── hysteria.rc │ ├── hysteria.service │ └── hysteria@.service ├── sing-box │ ├── sing-box.rc │ ├── sing-box.service │ └── sing-box@.service └── xray │ ├── xray.rc │ ├── xray.service │ └── xray@.service ├── conf ├── sing-box │ └── server │ │ ├── base.json │ │ ├── safer_out.json │ │ ├── simple_out.json │ │ ├── wg.json │ │ ├── wg_p2p.json │ │ └── wg_standalone.json └── xray │ ├── client │ ├── base.json │ └── vless_vision.json │ └── server │ └── wg_standalone.json ├── install ├── dnscrypt-proxy.sh ├── doh-server.sh ├── hysteria.sh ├── hysteria1.sh ├── singbox.sh ├── v2ray.sh └── xray.sh ├── nix ├── env.nix ├── nano │ └── nanorc └── zsh │ ├── .docker_name │ ├── .zshName │ ├── .zshrc │ ├── boot.sh │ └── shell.sh ├── podsrc ├── alpine │ ├── Dockerfile │ ├── docker-compose.yml │ └── shared └── shared │ ├── etc │ └── xray │ │ └── config.json │ └── sh │ ├── hysteria.sh │ ├── setup.sh │ ├── singbox.sh │ └── xray.sh ├── sh ├── amend.sh ├── commit.sh ├── diff.sh ├── echob ├── gsign.sh ├── sh.sh ├── sourceDir.sh ├── tag.sh ├── version.sh └── which └── shx /.github/workflows/dh_pub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/.github/workflows/dh_pub.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/README.md -------------------------------------------------------------------------------- /blob/dnscrypt-proxy/dnscrypt-proxy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/blob/dnscrypt-proxy/dnscrypt-proxy.toml -------------------------------------------------------------------------------- /blob/doh-server/doh-server.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/blob/doh-server/doh-server.rc -------------------------------------------------------------------------------- /blob/doh-server/doh-server.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/blob/doh-server/doh-server.service -------------------------------------------------------------------------------- /blob/doh-server/doh-server@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/blob/doh-server/doh-server@.service -------------------------------------------------------------------------------- /blob/hysteria/hysteria-server.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/blob/hysteria/hysteria-server.rc -------------------------------------------------------------------------------- /blob/hysteria/hysteria-server.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/blob/hysteria/hysteria-server.service -------------------------------------------------------------------------------- /blob/hysteria/hysteria-server@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/blob/hysteria/hysteria-server@.service -------------------------------------------------------------------------------- /blob/hysteria/hysteria.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/blob/hysteria/hysteria.rc -------------------------------------------------------------------------------- /blob/hysteria/hysteria.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/blob/hysteria/hysteria.service -------------------------------------------------------------------------------- /blob/hysteria/hysteria@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/blob/hysteria/hysteria@.service -------------------------------------------------------------------------------- /blob/sing-box/sing-box.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/blob/sing-box/sing-box.rc -------------------------------------------------------------------------------- /blob/sing-box/sing-box.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/blob/sing-box/sing-box.service -------------------------------------------------------------------------------- /blob/sing-box/sing-box@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/blob/sing-box/sing-box@.service -------------------------------------------------------------------------------- /blob/xray/xray.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/blob/xray/xray.rc -------------------------------------------------------------------------------- /blob/xray/xray.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/blob/xray/xray.service -------------------------------------------------------------------------------- /blob/xray/xray@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/blob/xray/xray@.service -------------------------------------------------------------------------------- /conf/sing-box/server/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/conf/sing-box/server/base.json -------------------------------------------------------------------------------- /conf/sing-box/server/safer_out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/conf/sing-box/server/safer_out.json -------------------------------------------------------------------------------- /conf/sing-box/server/simple_out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/conf/sing-box/server/simple_out.json -------------------------------------------------------------------------------- /conf/sing-box/server/wg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/conf/sing-box/server/wg.json -------------------------------------------------------------------------------- /conf/sing-box/server/wg_p2p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/conf/sing-box/server/wg_p2p.json -------------------------------------------------------------------------------- /conf/sing-box/server/wg_standalone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/conf/sing-box/server/wg_standalone.json -------------------------------------------------------------------------------- /conf/xray/client/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/conf/xray/client/base.json -------------------------------------------------------------------------------- /conf/xray/client/vless_vision.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/conf/xray/client/vless_vision.json -------------------------------------------------------------------------------- /conf/xray/server/wg_standalone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/conf/xray/server/wg_standalone.json -------------------------------------------------------------------------------- /install/dnscrypt-proxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/install/dnscrypt-proxy.sh -------------------------------------------------------------------------------- /install/doh-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/install/doh-server.sh -------------------------------------------------------------------------------- /install/hysteria.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/install/hysteria.sh -------------------------------------------------------------------------------- /install/hysteria1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/install/hysteria1.sh -------------------------------------------------------------------------------- /install/singbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/install/singbox.sh -------------------------------------------------------------------------------- /install/v2ray.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/install/v2ray.sh -------------------------------------------------------------------------------- /install/xray.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/install/xray.sh -------------------------------------------------------------------------------- /nix/env.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/nix/env.nix -------------------------------------------------------------------------------- /nix/nano/nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/nix/nano/nanorc -------------------------------------------------------------------------------- /nix/zsh/.docker_name: -------------------------------------------------------------------------------- 1 | XNL3XschU2MJ5r-n 2 | -------------------------------------------------------------------------------- /nix/zsh/.zshName: -------------------------------------------------------------------------------- 1 | shx -------------------------------------------------------------------------------- /nix/zsh/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/nix/zsh/.zshrc -------------------------------------------------------------------------------- /nix/zsh/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/nix/zsh/boot.sh -------------------------------------------------------------------------------- /nix/zsh/shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/nix/zsh/shell.sh -------------------------------------------------------------------------------- /podsrc/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/podsrc/alpine/Dockerfile -------------------------------------------------------------------------------- /podsrc/alpine/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/podsrc/alpine/docker-compose.yml -------------------------------------------------------------------------------- /podsrc/alpine/shared: -------------------------------------------------------------------------------- 1 | ../shared -------------------------------------------------------------------------------- /podsrc/shared/etc/xray/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/podsrc/shared/etc/xray/config.json -------------------------------------------------------------------------------- /podsrc/shared/sh/hysteria.sh: -------------------------------------------------------------------------------- 1 | ../../../install/hysteria.sh -------------------------------------------------------------------------------- /podsrc/shared/sh/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/podsrc/shared/sh/setup.sh -------------------------------------------------------------------------------- /podsrc/shared/sh/singbox.sh: -------------------------------------------------------------------------------- 1 | ../../../install/singbox.sh -------------------------------------------------------------------------------- /podsrc/shared/sh/xray.sh: -------------------------------------------------------------------------------- 1 | ../../../install/xray.sh -------------------------------------------------------------------------------- /sh/amend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/sh/amend.sh -------------------------------------------------------------------------------- /sh/commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/sh/commit.sh -------------------------------------------------------------------------------- /sh/diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/sh/diff.sh -------------------------------------------------------------------------------- /sh/echob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/sh/echob -------------------------------------------------------------------------------- /sh/gsign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/sh/gsign.sh -------------------------------------------------------------------------------- /sh/sh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/sh/sh.sh -------------------------------------------------------------------------------- /sh/sourceDir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/sh/sourceDir.sh -------------------------------------------------------------------------------- /sh/tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/sh/tag.sh -------------------------------------------------------------------------------- /sh/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/sh/version.sh -------------------------------------------------------------------------------- /sh/which: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/sh/which -------------------------------------------------------------------------------- /shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-cloudchaser/tempest/HEAD/shx --------------------------------------------------------------------------------