We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb717e3 commit 4a5ec86Copy full SHA for 4a5ec86
1 file changed
backend/src/main/java/com/back/global/config/SecurityConfig.java
@@ -59,6 +59,7 @@ SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
59
.csrf(csrf -> csrf
60
.ignoringRequestMatchers("/h2-console/**") // H2 콘솔은 CSRF 제외
61
.ignoringRequestMatchers("/swagger-ui/**") // Swagger UI는 CSRF 제외
62
+ .ignoringRequestMatchers("/ws/**")
63
.ignoringRequestMatchers("/api/v1/**") // 임시 csrf 제외
64
)
65
.headers(headers -> headers
0 commit comments