Skip to content

Commit

Permalink
시큐리티 config 수정 (Fastcampus-Final-Team3#172)
Browse files Browse the repository at this point in the history
* chore:시큐리티 config 수정(Fastcampus-Final-Team3#166)
  • Loading branch information
hybiis authored Oct 19, 2023
1 parent 1ba984c commit 61fcd09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/javajober/security/SecurityConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.and()
.httpBasic().disable()
.authorizeRequests()
.antMatchers("/members/login").permitAll()
.antMatchers("/members/signup").permitAll()
.antMatchers("/api/members/login").permitAll()
.antMatchers("/api/members/signup").permitAll()
.antMatchers("/healthCheck").permitAll()
.antMatchers("/api/wall/shareURL/**").permitAll()
.anyRequest().authenticated()
Expand Down

0 comments on commit 61fcd09

Please sign in to comment.