Opens up actuator endpoints
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2026-05-15 23:42:48 -05:00
parent b3801eb5e7
commit a34d2ddcf0

View File

@@ -67,7 +67,7 @@ class SecurityConfig(private val authEntrypointJwt: AuthEntrypointJwt,
}
.authorizeHttpRequests { authorizeRequests ->
authorizeRequests
.requestMatchers("/auth/**", "/signup", "/docs/**")
.requestMatchers("/auth/**", "/signup", "/docs/**", "/actuator/**")
.permitAll()
.anyRequest().authenticated()
}