Skip to content

Commit c2c385e

Browse files
committed
fix: actuator security 허용
1 parent 76eaa1f commit c2c385e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/src/main/java/project/backend/global/security/config/SecurityConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
6464
.requestMatchers("/signup", "/login", "/login/oauth2/**", "/error")
6565
.anonymous()
6666

67-
.requestMatchers("/token/**", "/github/**", "/images/**", "/health")
67+
.requestMatchers("/token/**", "/github/**", "/images/**", "/actuator/health")
6868
.permitAll()
6969

7070
.anyRequest()

0 commit comments

Comments
 (0)