Skip to content

Commit

Permalink
✨ fix: swagger curl 수정
Browse files Browse the repository at this point in the history
swagger에서 https 요청이 아닌 http로 api 호출이 이루어지던 버그를 수정합니다.
  • Loading branch information
dlrjs2360 committed Dec 26, 2023
1 parent bb0f3dc commit 5fc63d2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

@EnableSwagger2
@Configuration
@OpenAPIDefinition(servers = {@Server(url = "https://howbachu.kro.kr", description = "HowBaChu API Server")})
@OpenAPIDefinition(servers = {@Server(url = "/", description = "HowBaChu API Server")})
public class SwaggerConfig {

@Bean
Expand Down

0 comments on commit 5fc63d2

Please sign in to comment.