Add WebFlux Redirect to HTTPS Reference

Fixes: gh-5869
This commit is contained in:
Rob Winch
2018-09-18 21:12:37 -05:00
parent db9248e05a
commit 501c008526
4 changed files with 52 additions and 1 deletions

View File

@@ -31,7 +31,7 @@ Below are the highlights of the release.
** <<webflux-headers-csp,Content Security Policy>>
** <<webflux-headers-feature,Feature Policy>>
** <<webflux-headers-referrer,Referrer Policy>>
* Support for redirecting to HTTPS
* <<webflux-redirect-https,Redirect to HTTPS>>
=== Integrations

View File

@@ -4,6 +4,8 @@ include::webflux.adoc[leveloffset=+1]
include::headers.adoc[leveloffset=+1]
include::redirect-https.adoc[leveloffset=+1]
include::oauth2/index.adoc[leveloffset=+1]
include::registered-oauth2-authorized-client.adoc[leveloffset=+1]

View File

@@ -0,0 +1,32 @@
[[webflux-redirect-https]]
= Redirect to HTTPS
HTTPS is required to provide a secure application.
Spring Security can be configured to perform a redirect to https using the following Java Configuration:
[source,java]
----
@Bean
SecurityWebFilterChain springSecurityFilterChain(ServerHttpSecurity http) {
http
// ...
.redirectToHttps();
return http.build();
}
----
The configuration can easily be wrapped around an if statement to only be turned on in production.
Alternatively, it can be enabled by looking for a property about the request that only happens in production.
For example, if the production environment adds a header named `X-Forwarded-Proto` the following Java Configuration could be used:
[source,java]
----
@Bean
SecurityWebFilterChain springSecurityFilterChain(ServerHttpSecurity http) {
http
// ...
.redirectToHttps()
.httpsRedirectWhen(e -> e.getRequest().getHeaders().containsKey("X-Forwarded-Proto"));
return http.build();
}
----