We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b14ea7 commit c220d4bCopy full SHA for c220d4b
src/main/java/com/example/FixLog/config/SecurityConfig.java
@@ -33,7 +33,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
33
.requestMatchers(HttpMethod.GET, "/members/check-nickname").permitAll()
34
.requestMatchers(HttpMethod.GET, "/h2-console/**").permitAll()
35
//배포 확인용 임시 수정
36
- .requestMatchers("/main", "/test", "/search").permitAll()
+ .requestMatchers(HttpMethod.GET, "/test", "/test/**").permitAll()
37
.anyRequest().authenticated()
38
)
39
.headers(headers -> headers.frameOptions(frame -> frame.disable())) // H2 콘솔용
0 commit comments