see

GitHub Workflow Status Crates.io LICENSE


A simple and fast web server

Features

Install

Binary

Download the binary from the release page

Cargo

```bash cargo install see

or

cargo install --git https://github.com/wyhaya/see ```

Usage

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

Config

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

A simple example:

```yaml - server: listen: 80 root: /root/www

Click to view document