actix-web-middleware-redirect-https

Build Status

A middleware for actix-web which forwards all http requests to https with optional url string replacement.

crates.io

docs.rs

Usage

```toml

Cargo.toml

[dependencies] actix-web-middleware-redirect-https = "0.1.0" ```

```rust use actixweb::{ App, web }; use actixwebmiddlewareredirect_https::RedirectHTTPS;

App::new() .wrap(RedirectHTTPS::default()) .route("/", web::get().to(|| "Always HTTPS!")); `` By default, the middleware simply replaces theschemeof the URL withhttps://`, but you may need to it to change other parts of the URL. For example, in development if you are not using the default ports (80 and 443) then you will need to specify their replacement, as below:

```rust use actixweb::{ App, web }; use actixwebmiddlewareredirect_https::RedirectHTTPS;

App::new() .wrap(RedirectHTTPS::withreplacements(&vec![":8080".toowned(), ":8443".to_owned()])) .route("/", web::get().to(|| "Always HTTPS on non-default ports!")); ```