rust-web-server 17.20.0

Static file web server and HTTP toolkit written in Rust. Supports HTTP/3, HTTP/2, and HTTP/1.1. HTTP/3 and HTTP/2 require a TLS certificate; without one the server falls back to plain HTTP/1.1 automatically.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
ip = '127.0.0.1'
port = 7888
thread_count = 200

[cors] #  CROSS ORIGIN RESOURCE SHARING
allow_all = false # true will allow all CORS requests, other CORS properties will be ignored
allow_origins = ["https://foo.example", "https://bar.example"] # won't apply if allow_all set to true
allow_methods = ["POST", "PUT"] # won't apply if allow_all set to true
allow_headers = ["content-type", "x-custom-header"] # won't apply if allow_all set to true
allow_credentials = true # won't apply if allow_all set to true
expose_headers = ["content-type", "x-custom-header"] # won't apply if allow_all set to true
max_age = "86400" # won't apply if allow_all set to true