diff --git a/index.html b/index.html index 278dc7c..8a81706 100644 --- a/index.html +++ b/index.html @@ -114,24 +114,12 @@ GitHub 文件加速(PHP版本) - Fork me on GitHub

GitHub 文件加速(PHP版本) + />GitHub 文件加速

-

本站仅供演示,如需可靠使用,请自行部署

分支文件:https://github.com/tlanyan/ghproxy/blob/main/index.html

API请求:https://api.github.com/repos/reactphp/http/releases/latest

+

您还可以:

+

在任意github链接前加入https://ghproxy.layso.de/即可加速下载

+

如:https://ghproxy.layso.de/https://github.com/tlanyan/yii2/archive/2.0.4.zip

注意事项:

右键复制出来的链接都是符合标准的,但不支持项目文件夹

-

release、archive直接反代加速,文件会跳转至JsDelivr或cnpmjs.org加速下载

+
+
+

浏览器插件

+

+ Edge浏览器可以前往Edge插件市场安装插件,在扩展选项的“加速列表”填写 https://ghproxy.layso.de/ 其他保持默认保存即可 +

+

+ 安装插件后访问github会自动展示加速下载链接 +

本项目为 gh-proxy 的PHP版本,由 tlanyan 基于 ReactPHP 开发

+

+ 由上海来笙信息科技有限公司提供 +

diff --git a/index.php b/index.php index 9615ee5..ada5d95 100644 --- a/index.php +++ b/index.php @@ -4,15 +4,15 @@ require(__DIR__ . '/vendor/autoload.php'); define('ROOT', __DIR__); // listen address, change to 0.0.0.0 to handle public requests -define('ADDR', '127.0.0.1'); -define("PORT", 8080); +define('ADDR', '0.0.0.0'); +define("PORT", 10500); // use jsdelivr/cnpmjs -define('JSDELIVR', true); -define('CNPMJS', true); +define('JSDELIVR', false); +define('CNPMJS', false); // download size limit, defaults to 2GB -define('SIZE_LIMIT', 2 * 1024 * 1024 * 1024); +define('SIZE_LIMIT', 10 * 1024 * 1024 * 1024); $loop = React\EventLoop\Factory::create();