Merge branch '6.1.x'

This commit is contained in:
Marcus Da Coregio 2023-08-30 14:16:30 -03:00
commit 8eed8cd13b
1 changed files with 2 additions and 2 deletions

View File

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