From c0e99e72331c5c207a8fa8aebb5d22984253ac1d Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sun, 26 Jun 2022 05:07:57 +0100 Subject: [PATCH] fix redirecthttps link --- middleware/middleware-http-to-https/README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/middleware/middleware-http-to-https/README.md b/middleware/middleware-http-to-https/README.md index 7d94667..0bd4836 100644 --- a/middleware/middleware-http-to-https/README.md +++ b/middleware/middleware-http-to-https/README.md @@ -1,5 +1,11 @@ ## Middleware: Redirect Any HTTP Connection To Use HTTPS Connection +## Alternatives + +A pre-built solution is soon to be built-in. For now, see [`RedirectHttp`](https://docs.rs/actix-web-lab/0.16/actix_web_lab/middleware/struct.RedirectHttps.html) from [`actix-web-lab`](https://crates.io/crates/actix-web-lab). + +## This Example + This example is the next step after implementing this example : [Setup TLS via rustls](https://github.com/actix/examples/tree/master/security/rustls). You might have already implemented TLS (using one of the ways mentioned in the example of security section), and have setup your server to listen to port 443 (for HTTPS). @@ -12,7 +18,3 @@ Now, the only problem left to solve is, to listen to **HTTP** connections as wel cd middleware/middleware-http-to-https cargo run ``` - -## Notes - -Also see [`redirect_to_https`](https://docs.rs/actix-web-lab/0/actix_web_lab/middleware/fn.redirect_to_https.html) from [`actix-web-lab`](https://crates.io/crates/actix-web-lab).