Skip to content

Commit

Permalink
chore: permit requests to actuator endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
zechmeister committed Oct 1, 2024
1 parent 3fdbbd1 commit 819afba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public SecurityFilterChain springSecurityWebFilterChain(HttpSecurity http) throw
requests
.requestMatchers("/.well-known/security.txt")
.permitAll()
.requestMatchers("/actuator/health")
.requestMatchers("/actuator/health/readiness", "/actuator/health/liveness")
.permitAll()
.requestMatchers("/api/sender/**")
.permitAll()
Expand Down

0 comments on commit 819afba

Please sign in to comment.