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 2155dae commit 39f4c99Copy full SHA for 39f4c99
MEME-AUTH/src/main/java/org/meme/auth/config/SecurityConfig.java
@@ -58,7 +58,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
58
.requestMatchers("/auth/**").permitAll()
59
60
.requestMatchers("/api/v2/**").permitAll() // API version update
61
- .requestMatchers(PathRequest.toH2Console()).permitAll() // H2 데이터베이스 경로 허용
+ .requestMatchers("/h2-console/**").permitAll() // H2 데이터베이스 경로 허용
62
);
63
64
0 commit comments