Skip to content

Commit

Permalink
chore: flower.csv 수정 및 ALB health check 반환 값 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ss7622 committed Jul 9, 2024
1 parent 0d9c3fe commit a7c8448
Show file tree
Hide file tree
Showing 4 changed files with 945 additions and 1,011 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public ResponseEntity<List<RecommendFlowerDto>> preferFlower(@PathVariable("id")
return ResponseEntity.ok(re);
}

@GetMapping("/")
@GetMapping("/check")
public ResponseEntity<?> healthyCheck(){
return ResponseEntity.ok().build();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
//sms api
.requestMatchers("/sms/prove/*","/sms/send").permitAll()
//ALB
.requestMatchers("/").permitAll()
.requestMatchers("/member/check").permitAll()
.anyRequest().authenticated());

http.addFilterBefore(jwtVerifyFilter(), UsernamePasswordAuthenticationFilter.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class JwtVerifyFilter extends OncePerRequestFilter {
//sms api
"/sms/prove/*","/sms/send",
//ALB
"/"};
"/member/check"};
private final RedisUtil redisUtil;


Expand Down
Loading

0 comments on commit a7c8448

Please sign in to comment.