see GitHub Workflow Status Crates.io LICENSE Document

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 ```

Docker

bash docker pull wyhaya/see

Example


Add the following to see.conf

server { listen 80 echo Hello world }

mkdir see && vim see/see.conf

Run container

bash docker run -idt --name see -p 80:80 -p 443:443 -v '$PWD'/see:/ wyhaya/see

Open localhost and you should see hello world

Usage

Quick start in current directory

bash see start

Use specified port and directory

bash see start -b 80 -p /root/www

Config

You can use see -c [FILE] to specify the configuration file location

The default configuration file is in ~/.see.conf

Documents

A simple example:

``` server { listen 80 root /root/www }

server { listen 443 root /root/www host example.com https { key ./ssl.key cert ./ssl.pem } } ```