Skip to content

Commit

Permalink
feat: BLUE/GREEN 전략에서 사용할 actuator 허용
Browse files Browse the repository at this point in the history
  • Loading branch information
Curry4182 committed Apr 29, 2024
1 parent c2272aa commit 0aae84f
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,8 @@ public SecurityFilterChain securityFilterChain(final HttpSecurity http) throws E

.requestMatchers("/join").permitAll()

.requestMatchers(HttpMethod.GET, "/actuator").permitAll()

.anyRequest().hasRole("USER")
)
.sessionManagement(session -> session
Expand Down

0 comments on commit 0aae84f

Please sign in to comment.