Skip to content

Commit 4c04e19

Browse files
committed
add /actuator path to security whitelist
1 parent 565242b commit 4c04e19

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/com/vaadin/starter/bakery/app/security/SecurityConfiguration.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,9 @@ public void configure(WebSecurity web) throws Exception {
5959
"/icons/**",
6060
"/images/**",
6161
// (development mode) H2 debugging console
62-
"/h2-console/**"
62+
"/h2-console/**",
63+
// CC actuator
64+
"/actuator/**"
6365
);
6466
}
6567
}

0 commit comments

Comments
 (0)