docs: more comments
This commit is contained in:
parent
865abfc81c
commit
3ab44d04e2
@ -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服务器。
|
||||||
|
|
||||||
|
@ -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';
|
||||||
|
Loading…
Reference in New Issue
Block a user