docs: more comments

This commit is contained in:
tlanyan 2021-02-19 19:55:23 +08:00
parent 865abfc81c
commit 3ab44d04e2
2 changed files with 4 additions and 1 deletions

View File

@ -71,7 +71,7 @@ apt install -y nginx
### 4. 启动程序 ### 4. 启动程序
进入项目文件夹,执行 `nohup php index.php &`,也可以在 tmux/screen 等终端窗口内执行 `php index.php` 启动程序。 进入项目文件夹,执行 `nohup php index.php > /var/log/ghproxy.log 2>&1 &`,也可以在 tmux/screen 等终端窗口内执行 `php index.php` 启动程序。
部署了Nginx的前端web服务器的请重启web服务器。 部署了Nginx的前端web服务器的请重启web服务器。

View File

@ -47,6 +47,9 @@ function handler(Psr\Http\Message\ServerRequestInterface $req) {
return serveStaticFiles($url); return serveStaticFiles($url);
} }
// @notice: uncomment the following line to proxy any url!
// return proxy($req);
$exp1 = '/^https?:\/\/?github\.com\/.+?\/.+?\/(?:releases|archive)\/.*$/i'; $exp1 = '/^https?:\/\/?github\.com\/.+?\/.+?\/(?:releases|archive)\/.*$/i';
$exp2 = '/^https?:\/\/?github\.com\/.+?\/.+?\/(?:blob)\/.*$/i'; $exp2 = '/^https?:\/\/?github\.com\/.+?\/.+?\/(?:blob)\/.*$/i';
$exp3 = '/^https?:\/\/?github\.com\/.+?\/.+?\/(?:info|git-).*$/i'; $exp3 = '/^https?:\/\/?github\.com\/.+?\/.+?\/(?:info|git-).*$/i';