Skip to content

Commit

Permalink
Test: 배포 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
nampongo committed Mar 14, 2024
1 parent ca7c33e commit 22fdaff
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,9 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
exception.authenticationEntryPoint(jwtAuthenticationEntryPoint); // 인증 실패 처리
})
.authorizeHttpRequests(authorizeHttpRequests -> authorizeHttpRequests
.requestMatchers( "/oauth2/**").permitAll()
.anyRequest().authenticated()
//.requestMatchers( "/oauth2/**").permitAll()
//.anyRequest().authenticated()
.anyRequest().permitAll()
)
.sessionManagement(sessionManagement ->
sessionManagement.sessionCreationPolicy(SessionCreationPolicy.STATELESS)
Expand Down

0 comments on commit 22fdaff

Please sign in to comment.