Skip to content

Commit

Permalink
fix: added actuator endpoint to enable logs in runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
tkuzynow committed Nov 29, 2024
1 parent 875be5b commit 5dac09e
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 5dac09e

Please sign in to comment.