Skip to content

Commit 191f781

Browse files
authored
Fix#118
Fix#118
2 parents 27e5dd4 + 08e3ab3 commit 191f781

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

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

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

0 commit comments

Comments
 (0)