in log4j-spring-cloud-config-sample-server/src/main/java/org/apache/logging/log4j/spring/cloud/config/service/config/SecurityConfiguration.java [33:38]
public WebSecurityCustomizer webSecurityCustomizer() throws Exception {
return web -> web.ignoring()
.requestMatchers(antMatcher("/health"))
.requestMatchers(antMatcher("/metrics"))
.requestMatchers(antMatcher("/info"));
}