Skip to content

Commit

Permalink
allowedOriginPatterns로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
yooonwodyd committed Feb 19, 2024
1 parent 77d911a commit 6cfaae9
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ public SecurityFilterChain securityFilterChain(
.requestMatchers(PathRequest.toStaticResources().atCommonLocations()).permitAll()
.requestMatchers("/loginPage/formLogin").permitAll()
.requestMatchers("/loginPage/loginFail").permitAll()
.requestMatchers("/loginPage/login").permitAll()
.requestMatchers("/api/**").permitAll() //구현의 편의를 위해 임시 개방
.requestMatchers("/login/**").authenticated()
.anyRequest().authenticated()
Expand Down

0 comments on commit 6cfaae9

Please sign in to comment.