fix(cors): restrict allowed headers in CORS configuration
This commit is contained in:
parent
404a518be0
commit
06d418615c
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ public class CorsConfig implements WebMvcConfigurer {
|
||||||
registry.addMapping("/**")
|
registry.addMapping("/**")
|
||||||
.allowedOrigins("http://localhost:4200", "http://192.168.176.120:4200")
|
.allowedOrigins("http://localhost:4200", "http://192.168.176.120:4200")
|
||||||
.allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS")
|
.allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS")
|
||||||
.allowedHeaders("*")
|
.allowedHeaders("Origin", "Content-Type", "Accept", "Authorization", "X-Requested-With")
|
||||||
.allowCredentials(true)
|
.allowCredentials(true)
|
||||||
.maxAge(3600);
|
.maxAge(3600);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue