fix: Remove permitted root route
This commit is contained in:
parent
9976a000ee
commit
db81b4a710
2 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ class KeycloakSecurityConfig {
|
|||
@Bean
|
||||
public SecurityFilterChain resourceServerFilterChain(HttpSecurity http) throws Exception {
|
||||
http.authorizeHttpRequests(auth -> auth
|
||||
.requestMatchers("/test", "/", "/swagger", "/swagger-ui/**", "/v3/api-docs/**", "/health").permitAll()
|
||||
.requestMatchers("/swagger", "/swagger-ui/**", "/v3/api-docs/**", "/health").permitAll()
|
||||
.anyRequest().authenticated()
|
||||
)
|
||||
.oauth2ResourceServer(spec -> spec.jwt(Customizer.withDefaults()));
|
||||
|
|
Loading…
Add table
Reference in a new issue