Skip to content

Commit 4db118f

Browse files
authored
Update SecurityConfig.java : 메인 접근 허용
1 parent e4ac922 commit 4db118f

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/main/java/com/example/FixLog/config/SecurityConfig.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
3636
.requestMatchers(HttpMethod.GET, "/members/check-email").permitAll()
3737
.requestMatchers(HttpMethod.GET, "/members/check-nickname").permitAll()
3838
.requestMatchers(HttpMethod.GET, "/h2-console/**").permitAll()
39+
.requestMatchers(HttpMethod.GET, "/members/**").permitAll()
3940
.requestMatchers(HttpMethod.GET, "/test", "/test/**").permitAll() // 테스트용 허용
4041
.anyRequest().authenticated()
4142
)

0 commit comments

Comments
 (0)