#https #axum-server #https-server #http #server #server-port #web

axum-server-dual-protocol

Host a HTTP and HTTPS server on the same port with axum-server

8 releases (5 breaking)

0.6.0 Dec 22, 2023
0.5.2 Jun 16, 2023
0.4.0 May 4, 2023
0.3.0 Nov 26, 2022
0.1.0 Jul 28, 2022

#130 in HTTP server

Download history 99/week @ 2023-12-23 113/week @ 2023-12-30 344/week @ 2024-01-06 300/week @ 2024-01-13 428/week @ 2024-01-20 491/week @ 2024-01-27 514/week @ 2024-02-03 434/week @ 2024-02-10 563/week @ 2024-02-17 494/week @ 2024-02-24 439/week @ 2024-03-02 503/week @ 2024-03-09 366/week @ 2024-03-16 527/week @ 2024-03-23 563/week @ 2024-03-30 574/week @ 2024-04-06

2,118 downloads per month
Used in 4 crates (3 directly)

MIT/Apache

38KB
448 lines

axum-server-dual-protocol

Crates.io Version Live Build Status Docs.rs Documentation Main Documentation

Description

Provides utilities to host a axum-server server that accepts the HTTP and HTTPS protocol on the same port. See bind_dual_protocol().

A common use case for this is if a HTTPS server is hosted on a non-traditional port, having no corresponding HTTP port. This can be an issue for clients who try to connect over HTTP and get a connection reset error. See ServerExt::set_upgrade().

Usage

The simplest way to start is to use bind_dual_protocol():

let app = Router::new().route(
	"/",
	routing::get(|request: Request<Body>| async move {
		match request.extensions().get::<Protocol>().unwrap() {
			Protocol::Tls => "Hello, secure World!",
			Protocol::Plain => "Hello, insecure World!",
		}
	}),
);

// User-supplied certificate and private key.
let config = RustlsConfig::from_der(certificate, private_key).await?;

axum_server_dual_protocol::bind_dual_protocol(address, config)
	.serve(app.into_make_service())
	.await?;

We now have a server accepting both HTTP and HTTPS requests! Now we can automatically upgrade incoming HTTP requests to HTTPS using ServerExt::set_upgrade() like this:

use axum_server_dual_protocol::ServerExt;

axum_server_dual_protocol::bind_dual_protocol(address, config)
	.set_upgrade(true)
	.serve(app.into_make_service())
	.await?;

Alternatively UpgradeHttpLayer can be used:

let app = Router::new()
	.route("/", routing::get(|| async { "Hello, world!" }))
	.layer(UpgradeHttpLayer);

MSRV

As this library heavily relies on axum-server, axum, tower and hyper the MSRV depends on theirs. At the point of time this was written the highest MSRV was axum with 1.66.

Changelog

See the CHANGELOG file for details.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~15–27MB
~463K SLoC