Rust Programming Language
Guides, benchmarks and product news on reverse proxying, caching, Rust and Linux.
Rust Programming Language
17 October 2024
Building a Blazing Fast HTTP File Server in Rust with Axum in Under 15 Lines of Code
This article demonstrates how to create a simple, high-performance HTTP file server in Rust using the Axum framework and Tower HTTP, all in under 15 lines of code. You'll learn how to serve files from a directory and handle HTTP requests efficiently using asynchronous programming with the Tokio runtime.
Read more →
Rust Programming Language
21 September 2024
How to set up an Axum server with SNI configuration to handle TLS connections for multiple domains with rustls?
Learn how to configure an Axum server with Server Name Indication (SNI) to handle TLS connections for multiple domains using rustls. It covers configuring TLS certificates for different domains, setting up SNI in Rust, and ensuring secure connections across multiple virtual hosts.
Read more →