Skip to content

Commit

Permalink
[Fix] 헤더 와일드 카드 적용 (#43)
Browse files Browse the repository at this point in the history
* feat(HeatlCheck) : 상태 및 업데이트 확인을 위한 컨트롤러를 추가한다

* feat(SecurityConfig) : heatlcheck 컨트롤러는 권한 없이 접근을 허용

* refactor(HealthCheckController) : EOL 추가

* fix(WebConfig) : 요청 헤더 와일드카드 적용
  • Loading branch information
Due-IT authored Dec 1, 2024
1 parent 1341829 commit b2cd642
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ class WebConfig : WebMvcConfigurer {
"http://localhost:8080"
)
.allowedMethods("GET", "POST", "PUT", "PATCH", "DELETE")
.allowedHeaders("*")
.allowCredentials(true);
}
}

0 comments on commit b2cd642

Please sign in to comment.