Skip to content

Commit 39f4c99

Browse files
committed
!HOTFIX: h2 경로 적용 오류
1 parent 2155dae commit 39f4c99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MEME-AUTH/src/main/java/org/meme/auth/config/SecurityConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
5858
.requestMatchers("/auth/**").permitAll()
5959

6060
.requestMatchers("/api/v2/**").permitAll() // API version update
61-
.requestMatchers(PathRequest.toH2Console()).permitAll() // H2 데이터베이스 경로 허용
61+
.requestMatchers("/h2-console/**").permitAll() // H2 데이터베이스 경로 허용
6262
);
6363

6464

0 commit comments

Comments
 (0)