Browse Source

Merge branch '6.1.x'

pull/13772/head
Marcus Da Coregio 2 years ago
parent
commit
8eed8cd13b
  1. 4
      docs/modules/ROOT/pages/servlet/authorization/authorize-http-requests.adoc

4
docs/modules/ROOT/pages/servlet/authorization/authorize-http-requests.adoc

@ -562,8 +562,8 @@ http @@ -562,8 +562,8 @@ http
----
http {
authorizeHttpRequests {
authorize(DispatcherType.FORWARD, permitAll)
authorize(DispatcherType.ERROR, permitAll)
authorize(DispatcherTypeRequestMatcher(DispatcherType.FORWARD), permitAll)
authorize(DispatcherTypeRequestMatcher(DispatcherType.ERROR), permitAll)
authorize("/endpoint", permitAll)
authorize(anyRequest, denyAll)
}

Loading…
Cancel
Save