利用CFworker、反带等手段解决githup访问不了的问题

写在最前

目前githup基本上所有程序员都要日常访问的网站,但是据本人实际使用来看,速度是非常卡的,类似于wordpress的自动更新一样,不是在端部就是在墙外;往往一个文件访问起来可能要卡的半天,楼主亲生经历下载一个10M的文件,用了20几分钟,直接奔溃;幸好本人有国外的VPS,搭建了个trojan实现了无障碍访问,但是很多小伙伴并没有VPS,所以就有了这篇文章。目前我个人觉得可以解决这个问题的,有以下几种方式:反带、扶墙、换源。

《利用CFworker、反带等手段解决githup访问不了的问题》

cloudfare workers搭建代理站

项目地址:https://github.com/hunshcn/gh-proxy

演示:https://gh.api.99988866.xyz/

搭建方法和使用方式简单说一下:

申请cloudfare帐号-申请域名(也可以直接用系统自带的)-布置CFWORKERS(新建workers,粘贴代码保存)

cf worker版本部署

首页:https://workers.cloudflare.com

注册,登陆,Start building,取一个子域名,Create a Worker。

复制 index.js 到左侧代码框,Save and deploy。如果正常,右侧应显示首页。

index.js默认配置下clone走github.com.cnpmjs.org,项目文件会走jsDeliver,如需走worker,修改Config变量即可

ASSET_URL是静态资源的url(实际上就是现在显示出来的那个输入框单页面)

PREFIX是前缀,默认(根路径情况为”/”),如果自定义路由为example.com/gh/*,请将PREFIX改为 ‘/gh/’,注意,少一个杠都会错!

'use strict'
 
/**
 * static files (404.html, sw.js, conf.js)
 */
const ASSET_URL = 'https://hunshcn.github.io/gh-proxy'
// 前缀,如果自定义路由为example.com/gh/*,将PREFIX改为 '/gh/',注意,少一个杠都会错!
const PREFIX = '/'
// git使用cnpmjs镜像、分支文件使用jsDelivr镜像的开关,0为关闭,默认开启
const Config = {
    jsdelivr: 1,
    cnpmjs: 1
}
 
/** @type {RequestInit} */
const PREFLIGHT_INIT = {
    status: 204,
    headers: new Headers({
        'access-control-allow-origin': '*',
        'access-control-allow-methods': 'GET,POST,PUT,PATCH,TRACE,DELETE,HEAD,OPTIONS',
        'access-control-max-age': '1728000',
    }),
}
 
/**
 * @param {any} body
 * @param {number} status
 * @param {Object<string, string>} headers
 */
function makeRes(body, status = 200, headers = {}) {
    headers['access-control-allow-origin'] = '*'
    return new Response(body, {status, headers})
}
 
 
/**
 * @param {string} urlStr
 */
function newUrl(urlStr) {
    try {
        return new URL(urlStr)
    } catch (err) {
        return null
    }
}
 
 
addEventListener('fetch', e => {
    const ret = fetchHandler(e)
        .catch(err => makeRes('cfworker error:\n' + err.stack, 502))
    e.respondWith(ret)
})
 
 
/**
 * @param {FetchEvent} e
 */
async function fetchHandler(e) {
    const req = e.request
    const urlStr = req.url
    const urlObj = new URL(urlStr)
    let path = urlObj.searchParams.get('q')
    if (path) {
        return Response.redirect('https://' + urlObj.host + PREFIX + path, 301)
    }
    // cfworker 会把路径中的 `//` 合并成 `/`
    path = urlObj.href.substr(urlObj.origin.length + PREFIX.length).replace(/^https?:\/+/, 'https://')
    const exp1 = /^(?:https?:\/\/)?github\.com\/.+?\/.+?\/(?:releases|archive)\/.*$/i
    const exp2 = /^(?:https?:\/\/)?github\.com\/.+?\/.+?\/(?:blob)\/.*$/i
    const exp3 = /^(?:https?:\/\/)?github\.com\/.+?\/.+?\/(?:info|git-).*$/i
    const exp4 = /^(?:https?:\/\/)?raw\.githubusercontent\.com\/.+?\/.+?\/.+?\/.+$/i
    if (path.search(exp1) === 0 || !Config.cnpmjs && (path.search(exp3) === 0 || path.search(exp4) === 0)) {
        return httpHandler(req, path)
    } else if (path.search(exp2) === 0) {
        if (Config.jsdelivr){
            const newUrl = path.replace('/blob/', '@').replace(/^(?:https?:\/\/)?github\.com/, 'https://cdn.jsdelivr.net/gh')
            return Response.redirect(newUrl, 302)
        }else{
            path = path.replace('/blob/', '/raw/')
            return httpHandler(req, path)
        }
    } else if (path.search(exp3) === 0) {
        const newUrl = path.replace(/^(?:https?:\/\/)?github\.com/, 'https://github.com.cnpmjs.org')
        return Response.redirect(newUrl, 302)
    } else if (path.search(exp4) === 0) {
        const newUrl = path.replace(/(?<=com\/.+?\/.+?)\/(.+?\/)/, '@$1').replace(/^(?:https?:\/\/)?raw\.githubusercontent\.com/, 'https://cdn.jsdelivr.net/gh')
        return Response.redirect(newUrl, 302)
    } else {
        return fetch(ASSET_URL + path)
    }
}
 
 
/**
 * @param {Request} req
 * @param {string} pathname
 */
function httpHandler(req, pathname) {
    const reqHdrRaw = req.headers
 
    // preflight
    if (req.method === 'OPTIONS' &&
        reqHdrRaw.has('access-control-request-headers')
    ) {
        return new Response(null, PREFLIGHT_INIT)
    }
 
    let rawLen = ''
 
    const reqHdrNew = new Headers(reqHdrRaw)
 
    let urlStr = pathname
    if (urlStr.startsWith('github')) {
        urlStr = 'https://' + urlStr
    }
    const urlObj = newUrl(urlStr)
 
    /** @type {RequestInit} */
    const reqInit = {
        method: req.method,
        headers: reqHdrNew,
        redirect: 'follow',
        body: req.body
    }
    return proxy(urlObj, reqInit, rawLen, 0)
}
 
 
/**
 *
 * @param {URL} urlObj
 * @param {RequestInit} reqInit
 */
async function proxy(urlObj, reqInit, rawLen) {
    const res = await fetch(urlObj.href, reqInit)
    const resHdrOld = res.headers
    const resHdrNew = new Headers(resHdrOld)
 
    // verify
    if (rawLen) {
        const newLen = resHdrOld.get('content-length') || ''
        const badLen = (rawLen !== newLen)
 
        if (badLen) {
            return makeRes(res.body, 400, {
                '--error': `bad len: ${newLen}, except: ${rawLen}`,
                'access-control-expose-headers': '--error',
            })
        }
    }
    const status = res.status
    resHdrNew.set('access-control-expose-headers', '*')
    resHdrNew.set('access-control-allow-origin', '*')
 
    resHdrNew.delete('content-security-policy')
    resHdrNew.delete('content-security-policy-report-only')
    resHdrNew.delete('clear-site-data')
 
    return new Response(res.body, {
        status,
        headers: resHdrNew,
    })
}

使用方法

打开https://gh.api.99988866.xyz/,然后输入要加速的链接(release文件等)

或者直接在链接前面加上https://gh.api.99988866.xyz/

示例:

https://raw.githubusercontent.com/username/xxxxx/xxxxx

变成https://gh.api.99988866.xyz/raw.githubusercontent.com/username/xxxxx/xxxxx

2. 加速clone

git clone https://github.com/username/xxx.git

换成git clone https://gh.api.99988866.xyz/github.com/username/xxx.git

反向代理

这个适合有VPS的小伙伴,并且你的VPS可以过墙访问。至于你搭建的http端我建议采用nginx或者是caddy进行,特别是caddy搭建资源占的比较少,并且使用简单,个人推荐使用。假设你的域名为git.shikey.com,只要按照以下规则填写即可。

git.shikey.com.conf文件代码,nginx规则

server {
        listen   80; ## 监听 IPv4 80 端口
        server_name git.shikey.com;

         location / {
                proxy_pass https://github.com;
                proxy_redirect     off;
                proxy_set_header   Host             github.com; ##这一行最重要,看你代理raw还是代码站了
                proxy_set_header   X-Real-IP        $remote_addr;
                proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
        }
}

git.shikey.com.conf文件代码,caddy规则,略了,自己百度吧;

扶墙换源

扶墙目前可以用的方式有trojan比较安全一点,有很多人会用v2ray,其实大差不差;本站有教程,自己搜以下就可以了,也可以搞个便宜的VPS,建议大家这个还是要备一个的,因为用处太多了;

换源:目前中国用的比较多的是码云,不知道有没有调侃马爸爸的意思哈;另外亚马逊有githup里面raw的免费加速,这里就不介绍了,自己百度吧。

这个仓库有一个神奇的功能:可以把 github 中的代码clone到开源中国的账号中去;

基本要求:一个 github 账户和一个码云 gitee 账户(没有的同志去注册一下就好,几分钟就能搞定)。

基本步骤

  1. 将 github 上的目标项目,这里是 opencv_contrib,fork到自己的 github 账号上去;
  2. 登录 gitee 帐号,点击界面右上方的加号,点击下方出现的 “从 Github导入仓库”,之后按照提示关联自己的 github 账号,然后选择目标项目,根据提示进行操作;
  3. 可以选择下载 zip 文件或利用 git 工具clone代码(操作方法同 github 项目,clone中的链接换成 gitee 中项目的地址);

下载速度可达 MB/s 数量级,妈妈再也不用担心我整夜挂机clone代码了。

发表回复