diff --git a/src/main/java/me/crespel/karaplan/config/SecurityConfig.java b/src/main/java/me/crespel/karaplan/config/SecurityConfig.java index 55ed5df..833f367 100644 --- a/src/main/java/me/crespel/karaplan/config/SecurityConfig.java +++ b/src/main/java/me/crespel/karaplan/config/SecurityConfig.java @@ -30,7 +30,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception { csrfHandler.setCsrfRequestAttributeName(null); // Force loading CSRF token on every request return http .authorizeHttpRequests(requests -> requests - .requestMatchers("/", "/home").permitAll() + .requestMatchers("/", "/home", "/about").permitAll() .requestMatchers("/*.css", "/*.js", "/*.js.map", "/*.jpg", "/*.png", "/*.svg", "/*.ico", "/assets/**", "/media/**", "/webjars/**", "/site.webmanifest", "/browserconfig.xml").permitAll() .requestMatchers("/api", "/v3/api-docs/**", "/swagger-resources/**", "/swagger-ui/**", "/csrf").permitAll() .requestMatchers("/api/v1/account/**").permitAll()