Merge branch '2.3.x'

Closes gh-21745
This commit is contained in:
Phillip Webb 2020-06-07 10:28:01 -07:00
commit 6e71994b6b
3 changed files with 3 additions and 3 deletions

View File

@ -61,7 +61,7 @@ public abstract class AbstractViewResolverProperties {
private Charset charset = DEFAULT_CHARSET;
/**
* White list of view names that can be resolved.
* The view names that can be resolved.
*/
private String[] viewNames;

View File

@ -183,8 +183,7 @@ public class TomcatWebServerFactoryCustomizer
if (StringUtils.hasLength(remoteIpHeader)) {
valve.setRemoteIpHeader(remoteIpHeader);
}
// The internal proxies default to a white list of "safe" internal IP
// addresses
// The internal proxies default to a list of "safe" internal IP addresses
valve.setInternalProxies(remoteIpProperties.getInternalProxies());
try {
valve.setHostHeader(remoteIpProperties.getHostHeader());

View File

@ -13,6 +13,7 @@ NOTE: Property contributions can come from additional jar files on your classpat
Also, you can define your own properties.
== Core properties
include::config-docs/core.adoc[]