Skip to content

Commit

Permalink
[Refactor] SecurityConfig 접근 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jiyunio committed Jun 8, 2024
1 parent e2bffd6 commit c64c6fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti

.authorizeHttpRequests(authorize -> authorize
.requestMatchers("/member/sign-up", "/member/sign-in").permitAll()
.requestMatchers("/v3/**", "/swagger-ui/**").permitAll()
.requestMatchers("http://na2ru2.me:5151/**", "/v3/**").permitAll()
.anyRequest().authenticated())
.sessionManagement(session -> session
.sessionCreationPolicy(SessionCreationPolicy.STATELESS))
Expand Down

0 comments on commit c64c6fb

Please sign in to comment.