jsdelivr.net 加速实在不稳定,有时候直接加载不上.
有没有什么笨比式的反代加速方法,笨比一个实在不会折腾。。
jsdelivr.net 加速实在不稳定,有时候直接加载不上.
有没有什么笨比式的反代加速方法,笨比一个实在不会折腾。。
1
stille May 28, 2021 via iPhone
|
2
Jays May 28, 2021
hosts 目前还可以
|
3
XIU2 May 28, 2021
反代加速 Github 文件的项目已经有个 gh-proxy 了,可以尝试自己搭建,也可以用别人公益搭建的~
github.com/XIU2/UserScript greasyfork.org/zh-CN/scripts/412245 高速下载 Git Clone/SSH 、Release 、Raw 、Code(ZIP) 等文件、项目列表单文件快捷下载 (☁) |
4
ByteCat May 28, 2021
|
5
ik May 29, 2021 via iPhone
刚刚试了下我自己用的,支持 git clone
例如: git clone https://servername/https/github.com/nginx/nginx location ~ ( http|https)/([\w\-\.\:]+)/(.*) { proxy_pass $1://$2/$3$is_args$args; proxy_ssl_server_name on; proxy_ssl_name "$2"; proxy_redirect off; proxy_http_version 1.1; proxy_set_header Host "$2"; proxy_set_header Upgrade "$http_upgrade"; proxy_set_header Connection "upgrade"; proxy_set_header X-Real-IP "$remote_addr"; proxy_set_header X-Forwarded-For "$proxy_ad d_x_forwarded_for"; } |