Skip to content

Commit

Permalink
Merge pull request #23 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 c86a3c3 + 94f89a8 commit 800afec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public PasswordEncoder passwordEncoder() {
@Bean
CorsConfigurationSource corsConfigurationSource() {
CorsConfiguration configuration = new CorsConfiguration();
configuration.setAllowedOrigins(Arrays.asList("https://codestates-seb.github.io/")); // 클라이언트 애플리케이션이 호스팅되는 도메인
configuration.setAllowedOrigins(Arrays.asList("https://linakk.github.io/")); // 클라이언트 애플리케이션이 호스팅되는 도메인
configuration.setAllowedMethods(Arrays.asList("GET", "POST", "PATCH", "PUT", "DELETE", "HEAD", "OPTIONS")); // 지원하는 HTTP 메서드
configuration.setExposedHeaders(Arrays.asList("Authorization", "Refresh")); // 노출할 응답 헤더 (필요한 경우에만 노출)
configuration.setAllowCredentials(true); // 인증 정보를 포함하지 않도록 설정 (보안상의 이유로 기본적으로는 false)
Expand Down
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") // 클라이언트 애플리케이션이 호스팅되는 도메인
.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 800afec

Please sign in to comment.