ENES中文
EdgeMirror Help

One domain. Every accelerator.

Use EdgeMirror as a single-domain edge mirror gateway. Open a web page for guided commands, or copy the routes into package managers, CLIs, Docker, and download tools.

Services11
Stable routes6
Test routes5
Primary domainhttps://mirror.aierliz.top/edgemirror
Healthhttps://mirror.aierliz.top/edgemirror/healthz

How the Web UI Works

Tool names stay in English. Explanations and usage notes follow the selected language.

Portal

Portal

Start from the main dashboard, scan all accelerators, and open the specific tool page you need.

Path mode

Single-domain paths

Every accelerator runs under the same domain with a dedicated path, which fits Cloudflare Workers and Vercel deployments.

CLI ready

CLI ready

pip, huggingface-cli, git, docker, npm, go, cargo, wget, and curl can use generated URLs directly.

Route Matrix

These are the current service entry points for this deployment.

StatusServiceEntryWhat it accelerates
StablePyPI / PyTorchhttps://mirror.aierliz.top/pypiPyPI simple index, Python packages, and PyTorch wheels.
StableHugging Facehttps://mirror.aierliz.top/hfModels, datasets, API requests, and LFS downloads.
StableGitHubhttps://mirror.aierliz.top/githubGit clone, raw files, releases, and GitHub pages.
StableDockerhttps://mirror.aierliz.top/dockerDocker Hub and multi-registry image pulls through the current /v2 host.
StableLinux Mirrorshttps://mirror.aierliz.top/mirrorsAPT, YUM, DNF, Pacman, wget, and curl mirror paths.
StableUniversal Proxyhttps://mirror.aierliz.top/proxyAny HTTP or HTTPS file URL with redirect and filename handling.
Testnpm Registryhttps://mirror.aierliz.top/npmnpm, pnpm, and yarn metadata plus tarball downloads.
TestGo Moduleshttps://mirror.aierliz.top/goGOPROXY module metadata, .mod files, and .zip files.
TestMaven / Gradlehttps://mirror.aierliz.top/mavenMaven Central, Google Maven, Gradle Plugin Portal, and JitPack.
Testcrates.io Sparsehttps://mirror.aierliz.top/cratesCargo sparse index and crate package downloads.
TestDownloadshttps://mirror.aierliz.top/downloadsRuntimes, Open VSX, SourceForge, GitLab, Gitea, and direct file URLs.
No matching routes.

Test routes are implemented and verified by smoke tests, but should be validated in your own workflow before being treated as stable.

Command Recipes

Commands are generated from the active domain. Replace package names, model names, or file URLs as needed.

StablePyPI
pip install numpy -i https://mirror.aierliz.top/pypi/simple/
StablePyTorch
pip install torch torchvision --index-url https://mirror.aierliz.top/pypi/pytorch/cu118
StableHugging Face
export HF_ENDPOINT=https://mirror.aierliz.top/hf
huggingface-cli download sentence-transformers/all-MiniLM-L6-v2
StableGitHub
git clone https://mirror.aierliz.top/github/vercel/next.js.git
StableDocker
docker pull mirror.aierliz.top/library/nginx:latest
StableDocker daemon.json
{
  "registry-mirrors": [
    "https://mirror.aierliz.top"
  ]
}
StableAPT source
deb https://mirror.aierliz.top/mirrors/http://archive.ubuntu.com/ubuntu/ jammy main restricted universe multiverse
StableUniversal Proxy
curl -L -O "https://mirror.aierliz.top/proxy/https://nodejs.org/dist/v22.11.0/node-v22.11.0-x64.msi"
Testnpm
npm install lodash --registry=https://mirror.aierliz.top/npm/
TestGo Modules
go env -w GOPROXY=https://mirror.aierliz.top/go,direct
TestMaven / Gradle
maven { url = uri("https://mirror.aierliz.top/maven/maven-central") }
Testcrates.io
[source.crates-io]
replace-with = "edgemirror"

[source.edgemirror]
registry = "sparse+https://mirror.aierliz.top/crates/"
TestDownloads
curl -L -O "https://mirror.aierliz.top/downloads/node/v22.11.0/node-v22.11.0-x64.msi"
DeployCloudflare
npm ci
npx wrangler deploy
DeployVercel
npm ci
npx vercel@latest --prod
DeployVerify
npm run verify

Configuration and Deployment

Use the web UI directly, or persist routes inside your tools for long-term acceleration.

01

Deploy first, then bind a domain

The default wrangler.toml is portable for one-click Cloudflare deployment. Use wrangler.custom-domain.example.toml only after the domain is available in the target account.

02

One-click Vercel

vercel.json forwards every path to api/index.js, so the same path model works on Vercel domains.

03

Verify before production

Run npm run verify before deployment. It checks JavaScript syntax, page navigation, Vercel routing, Docker API routing, and high-severity npm audit results.