Skip to content

Commit

Permalink
feat: [#31] 모니터링 엔드포인트 시큐리티 적용 해제
Browse files Browse the repository at this point in the history
  • Loading branch information
donghyuun committed Sep 30, 2024
1 parent a1b891b commit cc9709d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.requestMatchers(
"/login", "/signup", "/", "/user",
"/api/auth/**",
"/swagger-ui/**"
"/swagger-ui/**",
"/actuator/**"
).permitAll()
.anyRequest().authenticated()
);
Expand Down

0 comments on commit cc9709d

Please sign in to comment.