├── .editorconfig ├── .github └── README.en.md ├── LICENSE ├── README.md ├── config.json ├── config ├── cloudflare-warp │ ├── Dockerfile │ └── startup.sh ├── cloudreve │ ├── v3 │ │ └── docker-compose.yaml │ └── v4 │ │ ├── docker-compose.watchtower.yaml │ │ └── docker-compose.yaml ├── nginx │ ├── conf │ │ ├── conf.d │ │ │ ├── redirect.conf │ │ │ └── restrict.conf │ │ ├── modules-enabled │ │ │ └── stream.conf │ │ ├── nginx.conf │ │ ├── nginxconfig.io │ │ │ ├── general.conf │ │ │ ├── grpc.conf │ │ │ ├── limit.conf │ │ │ ├── limit2.conf │ │ │ ├── proxy.conf │ │ │ ├── security.conf │ │ │ └── zerossl.conf │ │ ├── nginxconfig.txt │ │ ├── sites-available │ │ │ ├── cdn.example.com.conf │ │ │ └── domain.example.com.conf │ │ └── web │ │ │ └── cloudreve.conf │ ├── limit_test.sh │ └── nginx.service └── xray │ ├── Fallback.json │ ├── SNI.json │ ├── Trojan.json │ ├── Vision.json │ ├── XHTTP.json │ └── mKCP.json ├── core ├── check.sh ├── generate.sh ├── handler.sh ├── main.sh ├── menu.sh ├── read.sh └── share.sh ├── i18n ├── en.json └── zh.json ├── install.sh ├── service ├── docker.sh ├── nginx.sh └── ssl.sh ├── tool ├── geodata.sh └── traffic.sh └── 脚本结构图.drawio /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/.github/README.en.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config.json -------------------------------------------------------------------------------- /config/cloudflare-warp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config/cloudflare-warp/Dockerfile -------------------------------------------------------------------------------- /config/cloudflare-warp/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config/cloudflare-warp/startup.sh -------------------------------------------------------------------------------- /config/cloudreve/v3/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config/cloudreve/v3/docker-compose.yaml -------------------------------------------------------------------------------- /config/cloudreve/v4/docker-compose.watchtower.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config/cloudreve/v4/docker-compose.watchtower.yaml -------------------------------------------------------------------------------- /config/cloudreve/v4/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config/cloudreve/v4/docker-compose.yaml -------------------------------------------------------------------------------- /config/nginx/conf/conf.d/redirect.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config/nginx/conf/conf.d/redirect.conf -------------------------------------------------------------------------------- /config/nginx/conf/conf.d/restrict.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config/nginx/conf/conf.d/restrict.conf -------------------------------------------------------------------------------- /config/nginx/conf/modules-enabled/stream.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config/nginx/conf/modules-enabled/stream.conf -------------------------------------------------------------------------------- /config/nginx/conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config/nginx/conf/nginx.conf -------------------------------------------------------------------------------- /config/nginx/conf/nginxconfig.io/general.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config/nginx/conf/nginxconfig.io/general.conf -------------------------------------------------------------------------------- /config/nginx/conf/nginxconfig.io/grpc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config/nginx/conf/nginxconfig.io/grpc.conf -------------------------------------------------------------------------------- /config/nginx/conf/nginxconfig.io/limit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config/nginx/conf/nginxconfig.io/limit.conf -------------------------------------------------------------------------------- /config/nginx/conf/nginxconfig.io/limit2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config/nginx/conf/nginxconfig.io/limit2.conf -------------------------------------------------------------------------------- /config/nginx/conf/nginxconfig.io/proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config/nginx/conf/nginxconfig.io/proxy.conf -------------------------------------------------------------------------------- /config/nginx/conf/nginxconfig.io/security.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config/nginx/conf/nginxconfig.io/security.conf -------------------------------------------------------------------------------- /config/nginx/conf/nginxconfig.io/zerossl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config/nginx/conf/nginxconfig.io/zerossl.conf -------------------------------------------------------------------------------- /config/nginx/conf/nginxconfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config/nginx/conf/nginxconfig.txt -------------------------------------------------------------------------------- /config/nginx/conf/sites-available/cdn.example.com.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config/nginx/conf/sites-available/cdn.example.com.conf -------------------------------------------------------------------------------- /config/nginx/conf/sites-available/domain.example.com.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config/nginx/conf/sites-available/domain.example.com.conf -------------------------------------------------------------------------------- /config/nginx/conf/web/cloudreve.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config/nginx/conf/web/cloudreve.conf -------------------------------------------------------------------------------- /config/nginx/limit_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config/nginx/limit_test.sh -------------------------------------------------------------------------------- /config/nginx/nginx.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config/nginx/nginx.service -------------------------------------------------------------------------------- /config/xray/Fallback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config/xray/Fallback.json -------------------------------------------------------------------------------- /config/xray/SNI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config/xray/SNI.json -------------------------------------------------------------------------------- /config/xray/Trojan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config/xray/Trojan.json -------------------------------------------------------------------------------- /config/xray/Vision.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config/xray/Vision.json -------------------------------------------------------------------------------- /config/xray/XHTTP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config/xray/XHTTP.json -------------------------------------------------------------------------------- /config/xray/mKCP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/config/xray/mKCP.json -------------------------------------------------------------------------------- /core/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/core/check.sh -------------------------------------------------------------------------------- /core/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/core/generate.sh -------------------------------------------------------------------------------- /core/handler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/core/handler.sh -------------------------------------------------------------------------------- /core/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/core/main.sh -------------------------------------------------------------------------------- /core/menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/core/menu.sh -------------------------------------------------------------------------------- /core/read.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/core/read.sh -------------------------------------------------------------------------------- /core/share.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/core/share.sh -------------------------------------------------------------------------------- /i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/i18n/en.json -------------------------------------------------------------------------------- /i18n/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/i18n/zh.json -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/install.sh -------------------------------------------------------------------------------- /service/docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/service/docker.sh -------------------------------------------------------------------------------- /service/nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/service/nginx.sh -------------------------------------------------------------------------------- /service/ssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/service/ssl.sh -------------------------------------------------------------------------------- /tool/geodata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/tool/geodata.sh -------------------------------------------------------------------------------- /tool/traffic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/tool/traffic.sh -------------------------------------------------------------------------------- /脚本结构图.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcvos/Xray-script/HEAD/脚本结构图.drawio --------------------------------------------------------------------------------