Skip to content

Commit

Permalink
feat/JNU-econovation#206 : actuator가 요청하는 경로 허용
Browse files Browse the repository at this point in the history
  • Loading branch information
hwangdaesun committed May 3, 2024
1 parent 926df74 commit 4937a09
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.permitAll()
.antMatchers(HttpMethod.POST, "/v1/auth/login")
.permitAll()
.antMatchers(HttpMethod.GET, "/actuator/**")
.permitAll()
.anyRequest()
.authenticated();

Expand Down

0 comments on commit 4937a09

Please sign in to comment.