Skip to content

Commit 3a8ee62

Browse files
committed
[Fix]: 허용목록 추가
1 parent 6856b5e commit 3a8ee62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
3636
.requestMatchers("/billing.html", "/payments/**", "/toss/**").permitAll()
3737

3838
// 공개 API (기존)..
39-
.requestMatchers("/favicon.ico", "/h2-console/**").permitAll()
39+
.requestMatchers("/favicon.ico", "/h2-console/**", "/actuator/health").permitAll()
4040
.requestMatchers("/api/v1/auth/**", "/swagger-ui/**", "/v3/api-docs/**",
4141
"/swagger-ui.html", "/webjars/**", "/notifications/**", "/ws/**",
4242
"/api/test/**", "/bid-test.html", "/websocket-test.html").permitAll()

0 commit comments

Comments
 (0)