From 8349148bbfa854191bea579a0b8bbc757fd895d1 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Wed, 1 Oct 2014 16:23:00 +0100 Subject: [PATCH] Remove details of how to switch off RemoteIpValve: it's off by default See gh-1631 --- spring-boot-docs/src/main/asciidoc/howto.adoc | 8 -------- 1 file changed, 8 deletions(-) diff --git a/spring-boot-docs/src/main/asciidoc/howto.adoc b/spring-boot-docs/src/main/asciidoc/howto.adoc index fd45148d546..412e26b2f3e 100644 --- a/spring-boot-docs/src/main/asciidoc/howto.adoc +++ b/spring-boot-docs/src/main/asciidoc/howto.adoc @@ -500,14 +500,6 @@ to `application.properties`, e.g. Alternatively, you can take complete control of the configuration of the `RemoteIpValve` by configuring and adding it in a `TomcatEmbeddedServletContainerFactory` bean. -Lastly, you can switch off the valve by adding some entries to `application.properties`: - -[indent=0] ----- - server.tomcat.remote_ip_header= - server.tomcat.protocol_header= ----- - [[howto-use-jetty-instead-of-tomcat]]