We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 563884a + 733d4e7 commit 72d3a57Copy full SHA for 72d3a57
Caddyfile
@@ -7,7 +7,7 @@
7
auto_https off
8
}
9
10
-http://promptplace.kro.kr {
+http://promptplace.kro.kr, http://promptplace.kr, http://www.promptplace.kr{
11
encode zstd gzip
12
13
# 보안 헤더 (HSTS는 HTTPS 응답에서만 의미 있으므로 여기서는 생략 가능)
@@ -17,7 +17,7 @@ http://promptplace.kro.kr {
17
18
19
# api-docs 요청을 앱으로 전달
20
- handle /api-docs {
+ handle /api-docs* {
21
reverse_proxy app:3000
22
23
src/docs/swagger/options.ts
@@ -21,5 +21,5 @@ export const swaggerOptions = {
},
],
24
- apis: ['src/**/*.ts'], // JSDoc이 있는 파일 경로
+ apis: ['./src/**/*.ts', './dist/**/*.js'] // JSDoc이 있는 파일 경로
25
};
0 commit comments