From 84c3261cb28de202b71dee651e7ea1bbc75c67d6 Mon Sep 17 00:00:00 2001 From: Pedro Aguiar <72931357+codespearhead@users.noreply.github.com> Date: Mon, 25 Mar 2024 10:39:59 -0400 Subject: [PATCH] update: this line is inconsistent with docs in v1 See https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-2.2-Release-Notes#deprecations-in-spring-boot-22 Close #64 --- src/docs/asciidoc/faq.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/asciidoc/faq.adoc b/src/docs/asciidoc/faq.adoc index 7dd3850..c5b58d7 100644 --- a/src/docs/asciidoc/faq.adoc +++ b/src/docs/asciidoc/faq.adoc @@ -264,7 +264,7 @@ RequestHeader set X-Forwarded-Prefix "/custom-path" server.use-forward-headers=true ---- * If this is not enough, Spring Framework provides a `ForwardedHeaderFilter`. You can register it as a Servlet Filter in your application by setting server.forward-headers-strategy is set to FRAMEWORK. -* Since Spring Boot 3.2, this is the new property to handle reverse proxy headers: +* Since Spring Boot 2.2, this is the new property to handle reverse proxy headers: [source,properties] ----