博文

Windows端WSL安装和CPA-Manager-Plus 反代理安装

1. 安装标准的Linux 系统  wsl --install -d Ubuntu-26.04  2. 配置代理 export http_proxy = "http://127.0.0.1:10809" export https_proxy = "http://127.0.0.1:10809" 3. 安装docker  3. 1 下载一键脚本: curl -fsSL https://get.docker.com -o get-docker.sh 3.2 :执行一键安装 sudo http_proxy="http://127.0.0.1:10809" https_proxy="http://127.0.0.1:10809" sh get-docker.sh 4. docker 代理配置 sudo mkdir -p /etc/docker sudo tee /etc/docker/daemon.json <<'EOF' {   "proxies": {     "http-proxy": "http://127.0.0.1:10809",     "https-proxy": "http://127.0.0.1:10809",     "no-proxy": "localhost,127.0.0.1"   } } EOF sudo service docker restart docker compose up -d ================================================================ docker-compose.yml 文件地址 https://telegram.me/QingLongAndroid/724?comment=103490 CPA URL : http://cli-proxy-api:8317 CPA 安装 :https://github.com/seakee/CPA-Manager-Plus   WSL 官方安装指南: https://le...