Skip to content

Commit

Permalink
add: WebConfig CORS 설정 https url 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
pandahwang committed Oct 7, 2024
1 parent a946df2 commit cff4244
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ public void addCorsMappings(CorsRegistry registry) {
"http://localhost:3000",
"http://52.79.232.220:3000", // front IP 주소 추가할 곳""
"http://classtest.site",
"http://la.classtest.site"
"http://la.classtest.site",
"https:/classtest.site",
"https://la.classtest.site"
)
.allowedMethods("GET", "POST", "PUT", "DELETE")
.allowedHeaders("*")
Expand Down

0 comments on commit cff4244

Please sign in to comment.