fix(cors): restrict allowed headers in CORS configuration

This commit is contained in:
Jan K9f 2025-04-04 19:50:59 +02:00
parent 404a518be0
commit 06d418615c
Signed by: jank
GPG key ID: B9F475106B20F144

View file

@ -11,7 +11,7 @@ public class CorsConfig implements WebMvcConfigurer {
registry.addMapping("/**")
.allowedOrigins("http://localhost:4200", "http://192.168.176.120:4200")
.allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS")
.allowedHeaders("*")
.allowedHeaders("Origin", "Content-Type", "Accept", "Authorization", "X-Requested-With")
.allowCredentials(true)
.maxAge(3600);
}