Skip to content

Commit

Permalink
[Refactor] 접근 권한 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jiyunio committed Jun 8, 2024
1 parent 130cd88 commit 84cca8d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
.csrf(AbstractHttpConfigurer::disable)

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

0 comments on commit 84cca8d

Please sign in to comment.