Skip to content

Commit

Permalink
[fix] add whiteList (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
kgy1008 authored Jul 8, 2024
1 parent 6ac56eb commit 1044807
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class SecurityConfig {
private final JwtValidator jwtValidator;
private final JwtProvider jwtProvider;

private static final String[] whiteList = {"/api/v1/auth/login", "/api/v1/auth/reissue"};
private static final String[] whiteList = {"/api/v1/auth/login", "/api/v1/auth/reissue", "/actuator/health"};

@Bean
public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
Expand Down

0 comments on commit 1044807

Please sign in to comment.