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 671ffbe commit a4e5d3bCopy full SHA for a4e5d3b
src/main/java/com/back/global/security/config/SecurityConfig.java
@@ -71,6 +71,9 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
71
.requestMatchers("/v3/api-docs/**", "/swagger-ui/**", "/swagger-ui.html").permitAll()
72
.requestMatchers("/swagger-resources/**", "/webjars/**").permitAll()
73
74
+ // 헬스 체크 허용
75
+ .requestMatchers("/actuator/health").permitAll()
76
+
77
// 정적 리소스
78
.requestMatchers("/favicon.ico", "/*.html").permitAll()
79
.requestMatchers("/css/**", "/js/**", "/images/**").permitAll()
0 commit comments