Skip to content

Commit

Permalink
Merge pull request #26 from virtualidentityag/CARITAS-285-improve-not…
Browse files Browse the repository at this point in the history
…ifications-add-actuator

fix: added actuator endpoint to enable logs in runtime
  • Loading branch information
tkuzynow authored Nov 29, 2024
2 parents 05f28da + 5dac09e commit 49e6ccb
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,8 @@ protected void configure(HttpSecurity http) throws Exception {
.permitAll()
.antMatchers(HttpMethod.GET, "/actuator/health/*")
.permitAll()
.antMatchers(HttpMethod.POST, "/actuator/health/loggers/*")
.permitAll()
.mvcMatchers(HttpMethod.GET, "/users/{username}")
.permitAll()
.anyRequest()
Expand Down

0 comments on commit 49e6ccb

Please sign in to comment.