Skip to content

Commit

Permalink
feat : 서버 확인
Browse files Browse the repository at this point in the history
  • Loading branch information
jsilver01 committed Jul 31, 2024
1 parent 74a6b93 commit c54f187
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.csrf(CsrfConfigurer<HttpSecurity>::disable)
.authorizeHttpRequests(requests ->
requests
.requestMatchers("/test", "/auth/kakao/callback").permitAll() // 이 URL은 모두에게 허용
.requestMatchers("/test2", "/auth/kakao/callback").permitAll() // 이 URL은 모두에게 허용
.anyRequest().authenticated() // 그 외의 모든 요청은 인증 필요
)
.sessionManagement(sessionManagement ->
Expand Down

0 comments on commit c54f187

Please sign in to comment.