Skip to content

Commit 408ee59

Browse files
committed
[fix/#12] 모니터링 엔드포인트 시큐리티 필터 추가
1 parent e0ea998 commit 408ee59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/moplus/moplus_server/global/config/security/SecurityConfig.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public class SecurityConfig {
3636
private final EmailPasswordSuccessHandler emailPasswordSuccessHandler;
3737
private final JwtUtil jwtUtil;
3838

39-
private String[] allowUrls = {"/", "/favicon.ico", "/swagger-ui/**", "/v3/**"};
39+
private String[] allowUrls = {"/", "/favicon.ico", "/swagger-ui/**", "/v3/**", "/actuator/**"};
4040

4141
@Value("${cors-allowed-origins}")
4242
private List<String> corsAllowedOrigins;

0 commit comments

Comments
 (0)