successfully configured nflow

This commit is contained in:
2025-09-10 21:07:53 +02:00
parent 285b03a724
commit eb27468ddb
7 changed files with 64 additions and 7 deletions

View File

@@ -29,7 +29,9 @@ public class SecurityConfig {
http
.csrf(AbstractHttpConfigurer::disable)
.authorizeHttpRequests(auth -> auth
.requestMatchers("/auth/**").permitAll()
.requestMatchers("/explorer/**").permitAll()
.requestMatchers("/nflow/**").permitAll()
.requestMatchers("/auth/**").permitAll()
.requestMatchers("/public/**").permitAll()
.anyRequest().authenticated()
)