Skip to content

Commit 2fbcbd2

Browse files
committed
[πŸ”₯ !hotfix] μŠ€ν…Œμ΄μ§• μ„œλ²„ λ§ˆμ΄κ·Έλ ˆμ΄μ…˜ μž‘μ—… μ§„ν–‰
1 parent 90e672a commit 2fbcbd2

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

β€Žsrc/main/java/org/terning/terningserver/config/SwaggerConfig.javaβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
@Server(url = "https://www.terning-official.p-e.kr", description = "Default Server url"),
1717
@Server(url = "https://www.terning-official.n-e.kr", description = "Default Server url (2025 ver.)"),
1818
@Server(url = "http://15.165.242.132", description = "Staging Server URL"),
19+
@Server(url = "http://54.180.215.35", description = "Staging Server URL (2025 ver.)"),
1920
@Server(url = "http://localhost:8080", description = "Local Development Server URL")
2021
}
2122
)

β€Žsrc/main/java/org/terning/terningserver/config/WebMvcConfig.javaβ€Ž

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ public void addCorsMappings(CorsRegistry registry) {
1616
"http://localhost:3000",
1717
"https://www.terning-official.p-e.kr/",
1818
"https://www.terning-official.n-e.kr/",
19-
"http://15.165.242.132") // ν—ˆμš©ν•  좜처 : νŠΉμ • λ„λ©”μΈλ§Œ 받을 수 있음
19+
"http://15.165.242.132",
20+
"http://54.180.215.35") // ν—ˆμš©ν•  좜처 : νŠΉμ • λ„λ©”μΈλ§Œ 받을 수 있음
2021
.allowedMethods("GET", "POST", "PUT", "DELETE", "PATCH") // ν—ˆμš©ν•  HTTP method
2122
.allowCredentials(true); // μΏ ν‚€ 인증 μš”μ²­ ν—ˆμš©
2223
}

0 commit comments

Comments
Β (0)