Skip to content

Commit

Permalink
Merge pull request #21 from LinaKK/ref/be/product
Browse files Browse the repository at this point in the history
fix: update CORS allowOrigin
  • Loading branch information
LinaKK authored Dec 17, 2024
2 parents eb9c605 + a1a700b commit 2fcbc67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/main/java/greenNare/config/WebConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class WebConfig implements WebMvcConfigurer {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowedOrigins("https://linakk.github.io/seb44_main_026/") // 클라이언트 애플리케이션이 호스팅되는 도메인
.allowedOrigins("https://linakk.github.io/") // 클라이언트 애플리케이션이 호스팅되는 도메인
.allowedMethods("GET", "POST", "PATCH", "PUT", "DELETE", "HEAD", "OPTIONS") // 지원하는 HTTP 메서드
.exposedHeaders("Authorization") // 노출할 응답 헤더 (필요한 경우에만 노출)
.allowCredentials(false) // 인증 정보를 포함하지 않도록 설정 (보안상의 이유로 기본적으로는 false)
Expand Down

0 comments on commit 2fcbc67

Please sign in to comment.