Skip to content

Commit 0bce012

Browse files
committed
alb 헬스체크 허용
1 parent dbb485d commit 0bce012

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/com/next/app/config/SecurityConfig.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
2727
.cors(Customizer.withDefaults())
2828
.sessionManagement(sess -> sess.sessionCreationPolicy(SessionCreationPolicy.STATELESS))
2929
.authorizeHttpRequests(auth -> auth
30+
.requestMatchers("/health", "/actuator/health").permitAll()
3031
.requestMatchers(
3132
"/api/auth/login",
3233
"/api/users/register",

0 commit comments

Comments
 (0)