1
0
mirror of synced 2026-08-31 06:25:09 +00:00
Files

94 lines
2.3 KiB
Plaintext
Raw Permalink Normal View History

2019-11-25 15:49:51 -06:00
[[webflux-http]]
= HTTP
2018-09-18 21:12:37 -05:00
2021-12-13 16:57:36 -06:00
All HTTP-based communication should be protected with xref:features/exploits/http.adoc#http[using TLS].
2018-09-18 21:12:37 -05:00
2021-04-21 16:01:26 -05:00
This section covers details about using WebFlux-specific features that assist with HTTPS usage.
2019-11-25 15:49:51 -06:00
[[webflux-http-redirect]]
== Redirect to HTTPS
2021-04-21 16:01:26 -05:00
If a client makes a request using HTTP rather than HTTPS, you can configure Spring Security to redirect to HTTPS.
2019-11-25 15:49:51 -06:00
2021-04-21 16:01:26 -05:00
The following Java configuration redirects any HTTP requests to HTTPS:
2019-11-25 15:49:51 -06:00
.Redirect to HTTPS
2023-06-18 21:30:41 -05:00
[tabs]
======
Java::
+
2020-09-18 14:43:23 +02:00
[source,java,role="primary"]
2018-09-18 21:12:37 -05:00
----
@Bean
SecurityWebFilterChain springSecurityFilterChain(ServerHttpSecurity http) {
2018-09-18 21:12:37 -05:00
http
// ...
.redirectToHttps(withDefaults());
2018-09-18 21:12:37 -05:00
return http.build();
}
----
2020-09-18 14:43:23 +02:00
2023-06-18 21:30:41 -05:00
Kotlin::
+
2020-09-18 14:43:23 +02:00
[source,kotlin,role="secondary"]
----
@Bean
fun springSecurityFilterChain(http: ServerHttpSecurity): SecurityWebFilterChain {
return http {
// ...
redirectToHttps { }
}
}
----
2023-06-18 21:30:41 -05:00
======
2018-09-18 21:12:37 -05:00
2021-04-21 16:01:26 -05:00
You can wrap the configuration can be wrapped around an `if` statement to be turned on only in production.
Alternatively, you can enable it by looking for a property about the request that happens only in production.
For example, if the production environment adds a header named `X-Forwarded-Proto`, you should use the following Java Configuration:
2018-09-18 21:12:37 -05:00
2019-11-25 15:49:51 -06:00
.Redirect to HTTPS when X-Forwarded
2023-06-18 21:30:41 -05:00
[tabs]
======
Java::
+
2020-09-18 14:43:23 +02:00
[source,java,role="primary"]
2018-09-18 21:12:37 -05:00
----
@Bean
SecurityWebFilterChain springSecurityFilterChain(ServerHttpSecurity http) {
2018-09-18 21:12:37 -05:00
http
// ...
2025-06-19 14:34:48 -06:00
.redirectToHttps((redirect) -> redirect
.httpsRedirectWhen((e) -> e.getRequest().getHeaders().containsKey("X-Forwarded-Proto"))
);
2018-09-18 21:12:37 -05:00
return http.build();
}
----
2020-09-18 14:43:23 +02:00
2023-06-18 21:30:41 -05:00
Kotlin::
+
2020-09-18 14:43:23 +02:00
[source,kotlin,role="secondary"]
----
@Bean
fun springSecurityFilterChain(http: ServerHttpSecurity): SecurityWebFilterChain {
return http {
// ...
redirectToHttps {
httpsRedirectWhen {
it.request.headers.containsKey("X-Forwarded-Proto")
}
}
}
}
----
2023-06-18 21:30:41 -05:00
======
2019-11-25 15:49:51 -06:00
[[webflux-hsts]]
== Strict Transport Security
2021-07-30 16:56:54 -05:00
Spring Security provides support for xref:servlet/exploits/headers.adoc#servlet-headers-hsts[Strict Transport Security] and enables it by default.
2019-11-25 15:49:51 -06:00
[[webflux-http-proxy-server]]
== Proxy Server Configuration
2021-08-10 15:21:42 -05:00
Spring Security xref:features/exploits/http.adoc#http-proxy-server[integrates with proxy servers].