Merge pull request 'chore(swagger): Swagger OPENAPI 주소 정리 (#110)' (#112) from feature/ISSUE-110-swagger-openapi-cleanup into develop

This commit is contained in:
HYOJIN 2026-03-30 09:07:23 +09:00
커밋 007a23eacd

파일 보기

@ -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("운영 서버 프록시")
)); ));
} }