diff --git a/src/auth.rs b/src/auth.rs index a2261edd..15b184b9 100644 --- a/src/auth.rs +++ b/src/auth.rs @@ -128,7 +128,9 @@ impl<'a, 'r> FromRequest<'a, 'r> for Headers { "http" }; - let host = if let Some(host) = headers.get_one("Host") { + let host = if let Some(host) = headers.get_one("X-Forwarded-Host") { + host + } else if let Some(host) = headers.get_one("Host") { host } else { ""