公益项目

以下项目都为公益项目,持续时间未知,请不要对其攻击

前言

本站提供的服务,大多都是可以在免费平台自建的开源项目,如有能力可以尝试建立一个自己的服务

加速服务

jsdelivr 国内方案

状态:可用
域名: //cdn.cnortles.top

介绍

描述

这是本站对 jsdelivr 镜像,依托于腾讯云提供服务,由 COS+CDN 一起构成,具有白名单(如果你在本站友联,则不需要白名单)

概况

一个月 30-45G 流量,每秒限制请求 300 次,一小时瞬时额度封顶为 1G,达到封顶后,将会重定向至cdn.jsdelivr.net

周期

大部分文件内周期 15 天,少部分文件周期 3 天

镜像文件查看

速度

测速由 boce提供

cdn.cnortles.top测速

使用方法

因白名单机制,请您将你需要介入的域名留言在评论区,添加成功后将会以邮件回复

1
2
3
4
https://cdn.cnortles.top/npm/package@version/file
https://cdn.cnortles.top/npm/jquery@3.2.1/dist/jquery.min.js
https://cdn.cnortles.top/npm/jquery/dist/jquery.min.js
https://cdn.cnortles.top/npm/jquery/
1
https://cdn.cnortles.top/gh/user/repo@version/file

使用数据

green 情况统计

2022

08

暂时无记录

私有化


unpkg 方案

状态:正常
域名: //unpkg.cnortles.top

介绍

概述

本服务由上海腾讯云提供,月流量1000G,带宽6m对小文件加速听快,无白名单,一秒限制请求 450 次,其余无限

周期

与上源同步

速度

测速由 boce提供

unpkg.cnortles.top测速

文件列表

使用方法

1
2
unpkg.cnortles.top/react@16.7.0/umd/react.production.min.js
unpkg.cnortles.top/react/umd/react.production.min.js unpkg.cnortles.top/jquery

使用数据

green 情况统计

2022

08

暂时无记录

私有化

自建 unpkg 服务

添加源站

1
http://1.117.99.118:8099

jsdelivr 加速方案-2

使用

1
https://project.cnortles.top/proxy/jsdelivr/

用法与jsdelivr一样,采用NGINX进行反代,周期 2 天

自制

在你的NGINX配置中添加以下代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

#PROXY-START/proxy/jsdelivr/

location ^~ /proxy/jsdelivr/
{
proxy_pass https://cdn.jsdelivr.net/;
proxy_set_header Host cdn.jsdelivr.net;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header REMOTE-HOST $remote_addr;

add_header X-Cache $upstream_cache_status;

#Set Nginx Cache


if ( $uri ~* "\.(gif|png|jpg|css|js|woff|woff2)$" )
{
}
proxy_ignore_headers Set-Cookie Cache-Control expires;
proxy_cache cache_one;
proxy_cache_key $host$uri$is_args$args;
proxy_cache_valid 200 304 301 302 259200m;
}

#PROXY-END/proxy/jsdelivr

然后重启服务


github 加速计划

状态:可用
域名: https://git.cnortles.tk/

概述

GitHub 的镜像,由cloud flare提供服务,有次数限制,推荐私有部署

测速

待更新……

使用方法

1
#1 直接输入网址访问 #2 在克隆时,将 gitHub.com 替换为git.cnortles.tk/

私有部署

使用数据

green 情况统计

2022

08

暂时无记录

工具类

待更新……