rsweb 0.3.0

library for creating multithreaded web servers in rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# rsweb
## a web server and creation library for multithreaded web servers

## Installation
`rsweb` has a docker image `uludev/rsweb:latest` which will run an `x86_64` executable.
It expects a configuration file to be in `/etc/rsweb/rsweb.config.toml`.

## Configuration
An example configuration looks like this:
```toml
port = 8080
ip = "127.0.0.1"
threads = 10
[ressources]
root = "."
index = "/test.html"
aliases = ["/test:/test.html"]
```