1
jinqzzz 97 天前
反向代理和 301 跳转都可以
|
2
ns09005264 97 天前 3
执行远程脚本的方式:
curl -fsSL https://github.com/someone/project/raw/main/install.sh | bash -s 通过 curl 下载文件,再通过管道传递给 bash 来执行该文件。 Web 管理页面: 你的服务器装个 miniserve ,建一个文件夹专门放脚本,命名好脚本们,启动 miniserve 指定目录为该文件夹,然后就可以: curl -fsSL https://你的服务器:8080/脚本名.sh | bash -s 你访问 https://你的服务器:8080 就可以看到脚本的列表。 另外在 windows 上执行远程脚本: iwr https://github.com/someone/project/raw/main/install.ps1 -useb | iex |
3
yippee0539 95 天前
搭个 git 得了
|
4
capgrey OP @yippee0539
但是还有记很多路由,比如 mater/blob 那些 |
5
yippee0539 86 天前
|