11 个版本
使用旧Rust 2015
0.3.5 | 2018年2月5日 |
---|---|
0.3.4 | 2018年2月4日 |
0.3.2 | 2017年12月5日 |
0.3.1 | 2017年10月24日 |
0.1.4 | 2017年10月15日 |
#71 in #file-server
每月 29 次下载
24KB
412 代码行
代理
命令行代理服务器
此工具的用途是
- 作为真实代理服务器的一个快速替代品(仅限开发目的)。
- 一个非常简单的静态网站/文件服务器
安装
参见 releases
,
cargo安装 cli-proxy
,
或从源代码构建
- 克隆此存储库
cargo构建 --发布
更新
- 自更新功能(从
github
发布)可通过--features update
使用。 - 二进制
releases
是使用update
功能编译的。 代理自我更新
使用方法
开发代理
# - listen on `localhost:3000`
# - serve requests starting with `/static/` from the relative path `static/`
# - serve requests starting with `/media/` from the absolute path `/abs/path/to/media
# - serve requests starting with `/assets/` from the relative path `assets`
# - proxy requests starting with `/api/` to `localhost:4001`
# - proxy requests starting with `/status/` to `localhost:4002`
# - proxy remaining requests to `localhost:3002`
proxy serve \
--port 3000 \
--static /static/,static/ \
--static /media/,/abs/path/to/media \
-s /assets/,assets \
--sub-proxy /api/,localhost:4001 \
-P /status/,localhost:4002 \
localhost:3002
静态网站服务器
# - generate crate documentation
cargo doc
# - serve / request with target/doc/<crate>/index.html
# - serve static files starting with "/" from target/doc
# - serve static files starting with "/" from target/doc/<crate>
proxy serve . \
--file /,target/doc/<crate>/index.html,text/html \
--static /,target/doc \
--static /,target/doc/<crate>
静态文件服务器
# - serve static files from the current directory
proxy fs .
依赖项
~12–26MB
~428K SLoC