Skip to content

Commit

Permalink
fix: Swagger title, description 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
bflykky committed Jul 30, 2024
1 parent accba59 commit fccd499
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/com/umc/naoman/global/config/SwaggerConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ public OpenAPI openAPI() {
.in(SecurityScheme.In.HEADER).name("Authorization");
SecurityRequirement securityRequirement = new SecurityRequirement().addList("bearerAuth");

// Server server = new Server();
// server.setUrl("http://{EC2_인스턴스의_IPv4_주소}");
Server server = new Server();
server.setUrl("http://52.79.212.19");

Server local = new Server();
local.setUrl("http://localhost:8080");
Expand All @@ -35,8 +35,8 @@ public OpenAPI openAPI() {

private Info apiInfo() {
return new Info()
.title("턴페이지 서비스 API")
.description("독후감 작성, 조회와 중고 도서 판매 등의 기능을 제공합니다.")
.title("나ㅇ만 서비스 API")
.description("친구, 가족, 동료와 찍은 사진들을 손쉽게 공유할 수 있도록 돕는 서비스, 나ㅇ만입니다.")
.version("1.0.0");
}
}

0 comments on commit fccd499

Please sign in to comment.