actix-web-middleware-redirect-scheme

Build Status

A middleware for actix-web which forwards all http requests to https and vice versa. Based on actix-web-middleware-redirect-https.

There is no need to use this crate if you only need to redirect to HTTPS, in this case use original crate actix-web-middleware-redirect-https

crates.io

docs.rs

Usage HTTP -> HTTPS

```toml

Cargo.toml

[dependencies] actix-web-middleware-redirect-scheme = "1.0.0" ```

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

App::new() .wrap(RedirectHTTPS::default()) .route("/", web::get().to(|| HttpResponse::Ok() .content_type("text/plain") .body("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, HttpResponse}; use actixwebmiddlewareredirect_scheme::RedirectHTTPS;

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

Usage HTTPS -> HTTP

```toml

Cargo.toml

[dependencies] actix-web-middleware-redirect-scheme = "1.0.0" ```

```rust use actixweb::{App, web, HttpResponse}; use actixwebmiddlewareredirect_scheme::RedirectHTTP;

App::new() .wrap(RedirectHTTP::default()) .route("/", web::get().to(|| HttpResponse::Ok() .content_type("text/plain") .body("Always HTTP!"))); `` By default, the middleware simply replaces theschemeof the URL withhttp://`, 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, HttpResponse}; use actixwebmiddlewareredirect_scheme::RedirectHTTP;

App::new() .wrap(RedirectHTTP::withreplacements(&[(":8443".toowned(), ":8080".toowned())])) .route("/", web::get().to(|| HttpResponse::Ok() .contenttype("text/plain") .body("Always HTTP on non-default ports!"))); ```