chore(swagger): Swagger OPENAPI 주소 정리 (#110) #112

병합
HYOJIN feature/ISSUE-110-swagger-openapi-cleanup 에서 develop 로 1 commits 를 머지했습니다 2026-03-30 09:07:24 +09:00

파일 보기

@ -67,21 +67,12 @@ public class SwaggerConfig {
new Server() new Server()
.url("http://localhost:" + serverPort + contextPath) .url("http://localhost:" + serverPort + contextPath)
.description("로컬 개발 서버"), .description("로컬 개발 서버"),
new Server()
.url("http://10.26.252.39:" + serverPort + contextPath)
.description("로컬 개발 서버"),
new Server() new Server()
.url("http://211.208.115.83:" + serverPort + contextPath) .url("http://211.208.115.83:" + serverPort + contextPath)
.description("중계 서버"), .description("중계 서버"),
new Server() new Server()
.url("https://guide.gc-si.dev" + contextPath) .url("https://guide.gc-si.dev" + contextPath)
.description("중계 서버 도메인"), .description("GC 도메인")
new Server()
.url("http://10.187.58.58:" + serverPort + contextPath)
.description("운영 서버"),
new Server()
.url("https://mda.kcg.go.kr" + contextPath)
.description("운영 서버 프록시")
)); ));
} }