Skip to content

Commit a4e5d3b

Browse files
committed
work
1 parent 671ffbe commit a4e5d3b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
7171
.requestMatchers("/v3/api-docs/**", "/swagger-ui/**", "/swagger-ui.html").permitAll()
7272
.requestMatchers("/swagger-resources/**", "/webjars/**").permitAll()
7373

74+
// 헬스 체크 허용
75+
.requestMatchers("/actuator/health").permitAll()
76+
7477
// 정적 리소스
7578
.requestMatchers("/favicon.ico", "/*.html").permitAll()
7679
.requestMatchers("/css/**", "/js/**", "/images/**").permitAll()

0 commit comments

Comments
 (0)