利用CloudFlare的Worker反代Github站点

发表于 2023-03-17

由于最近Github.com站点经常有Timeout或Reset的情况发生,所以想零成本的做一个Github的代理。

这里使用CloudFlare的免费Worker功能,对Github做全球代理。同时Cloudflare会对静态页面做CDN缓存,也会加快我们访问github的速度。

很少的几行代码,解决了很大的事情。

前提

首先,需要注册一个Cloudflare 的免费账号

然后,由于Cloudflare提供的 *.workers.dev 域名在国内经常有访问不到的问题,所以最好拥有一个自定义域名,并托管到Clareflare。

在Cloudflare创建Worker并设置自定义域名

在Cloudflare的控制台创建Worker,并将如下代码复制到Worker中,保存并发布。

 1export default {
 2  async fetch(request, env) {
 3    const _url = new URL(request.url);
 4    const hostname = _url.hostname
 5    _url.hostname = "github.com"
 6    const req = new Request(_url, request);
 7    req.headers.set('origin', 'https://github.com');
 8    
 9    const res = await fetch(req);
10    let newres = new Response(res.body, res);
11
12    let location = newres.headers.get('location');
13    if (location !== null && location !== "") {
14      location = location.replace('://github.com', '://'+hostname);
15      newres.headers.set('location', location);
16    }
17    return newres 
18  },
19};

设置自定义域名

在worker的配置中,添加CustomDomain,我这里使用的是 https://gh.xxfe.com ,可直接代理到github.com。

注意事项

请求-修改Origin头

Github对于Post请求,会检查Origin头,如果不是github自身的域名,会直接返回422错误。

这里使用以下代码,将转发给Github的header覆盖Origin头

1   req.headers.set('origin', 'https://github.com');

响应-修改Location头

当用户没有登录的时候,响应的Location字段会被设置为https://github.com/login,这里为了避免浏览器跳转到github官网,修改了location字段到请求域。

1    let location = newres.headers.get('location');
2    if (location !== null && location !== "") {
3      location = location.replace('://github.com', '://'+hostname);
4      newres.headers.set('location', location);
5    }

效果

打开反代的网站 https://gh.xxfe.com ,即可看到如下效果(此站点会一直保留,给需要的朋友使用):

reverse github preview

使用

git clone为例,以前仓库路径为:https://github.com/anhk/ztserver.git ,那么将路径中的github.com修改为 gh.xxfe.com 即可

1$ git clone https://gh.xxfe.com/anhk/ztserver.git
2正克隆到 'ztserver'...
3remote: Enumerating objects: 32, done.
4remote: Counting objects: 100% (32/32), done.
5remote: Compressing objects: 100% (24/24), done.
6remote: Total 32 (delta 11), reused 26 (delta 5), pack-reused 0
7Unpacking objects: 100% (32/32), done.
8$
上一篇 在X86设备上构建多CPU架构的容器 下一篇 并行计算-实现"前缀和"算法