We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13ebd53 commit da612afCopy full SHA for da612af
src/main/java/com/back/global/security/SecurityConfig.java
@@ -44,6 +44,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
44
//.requestMatchers("/api/rooms/RoomChatApiControllerTest").permitAll() // 테스트용 임시 허용
45
.requestMatchers("/","/swagger-ui/**", "/v3/api-docs/**").permitAll() // Swagger 허용
46
.requestMatchers("/h2-console/**").permitAll() // H2 Console 허용
47
+ .requestMatchers("/actuator/health").permitAll() // 헬스 체크 허용
48
.anyRequest().authenticated()
49
)
50
0 commit comments