Skip to content

Commit

Permalink
security - allow health
Browse files Browse the repository at this point in the history
  • Loading branch information
chinnawatsut committed Mar 23, 2024
1 parent 5053e26 commit e0b3e8b
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ SecurityFilterChain defaultSecurityFilterChain(HttpSecurity http) throws Excepti
.authorizeHttpRequests(
requests ->
requests.requestMatchers(
"/swagger-ui/**",
"/v3/api-docs/**",
"/api/*/health")
"/swagger-ui/**", "/v3/api-docs/**", "/*/*/health")
.permitAll()
.anyRequest()
.authenticated())
Expand Down

0 comments on commit e0b3e8b

Please sign in to comment.