Skip to content

Commit da612af

Browse files
committed
Infra: Actuator 인증/인가 설정 변경
- 헬스 체크 허용
1 parent 13ebd53 commit da612af

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/com/back/global/security/SecurityConfig.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
4444
//.requestMatchers("/api/rooms/RoomChatApiControllerTest").permitAll() // 테스트용 임시 허용
4545
.requestMatchers("/","/swagger-ui/**", "/v3/api-docs/**").permitAll() // Swagger 허용
4646
.requestMatchers("/h2-console/**").permitAll() // H2 Console 허용
47+
.requestMatchers("/actuator/health").permitAll() // 헬스 체크 허용
4748
.anyRequest().authenticated()
4849
)
4950

0 commit comments

Comments
 (0)