rust-web-server 17.48.0

An HTTP web framework, reverse proxy, and server for Rust supporting HTTP/1.1, HTTP/2, and HTTP/3. Config-driven proxy mode (rws.config.toml with [[route]] / [[upstream]]) or library crate. No third-party HTTP dependencies.
Documentation
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Rust Web Server</title>
    <link rel="stylesheet" href="/static/style.css">
    <link rel="icon" href="/favicon.svg">
</head>
<body>
Hello world!
<ul>
    <li><a href="/static/content.png">image</a></li>
    <li><a href="/static/form">form</a></li>
    <li><a href="/static/file">file</a></li>
    <li><a href="/static">folder with index.html</a></li>
    <li><a href="/404">not found resource</a></li>
</ul>
</body>
</html>