A simple and fast web server
Download the binary from the release page
```bash cargo install see
cargo install --git https://github.com/wyhaya/see ```
Quick start in current directory
bash
see start
Use specified port and directory
bash
see start -b 0.0.0.0:80 -p /root/www
Use yaml
format as a configuration file, You can use see -c config.yml
to specify the configuration file location
The default configuration file is in ~/.see/config.yml
```yaml - server: listen: 80 root: /root/www
Click to view document