Enable Spring Boot Actuator with limited exposure and secure /actuator/mappings endpoint access.

This commit is contained in:
2026-07-19 00:08:46 +02:00
parent dde66bd608
commit 5b28f2b707
3 changed files with 3 additions and 0 deletions
@@ -56,6 +56,7 @@ public class SecurityConfig {
auth -> auth
.requestMatchers(HttpMethod.OPTIONS, "/**").permitAll()
.requestMatchers("/api/chat/send/**").access(allowedIpCheck)
.requestMatchers("/actuator/mappings").access(allowedIpCheck)
.requestMatchers("/api/form/**").authenticated()
.requestMatchers("/api/login/getUsername").authenticated()
.requestMatchers("/api/mail/**").authenticated()