rust-web-server 17.61.0

A dependency-minimal Rust web platform: HTTP/1.1, HTTP/2, and HTTP/3 server, reverse proxy, and application framework with routing, middleware (auth, rate limiting, tracing), an async ORM, background jobs, object storage, and a mailer. Runs as a zero-code config-driven proxy or as a library crate. No third-party HTTP dependencies.
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 = [] # won't apply if allow_all set to true
allow_methods = [] # won't apply if allow_all set to true
allow_headers = [] # won't apply if allow_all set to true
allow_credentials = false # won't apply if allow_all set to true
expose_headers = [] # won't apply if allow_all set to true
max_age = "0" # won't apply if allow_all set to true