feat: HTTPS 설정 - Let's Encrypt + startover.co.kr 도메인 적용

This commit is contained in:
Johngreen
2026-03-08 17:22:07 +09:00
parent 4802e70387
commit 557559c654
3 changed files with 21 additions and 12 deletions
+6 -4
View File
@@ -67,8 +67,9 @@ services:
NODE_ENV: production
labels:
- "traefik.enable=true"
- "traefik.http.routers.web.rule=PathPrefix(`/`)"
- "traefik.http.routers.web.entrypoints=web"
- "traefik.http.routers.web.rule=Host(`startover.co.kr`) && PathPrefix(`/`)"
- "traefik.http.routers.web.entrypoints=websecure"
- "traefik.http.routers.web.tls.certresolver=letsencrypt"
- "traefik.http.routers.web.priority=1"
- "traefik.http.services.web.loadbalancer.server.port=3000"
depends_on:
@@ -92,8 +93,9 @@ services:
NODE_ENV: production
labels:
- "traefik.enable=true"
- "traefik.http.routers.admin.rule=PathPrefix(`/admin`)"
- "traefik.http.routers.admin.entrypoints=web"
- "traefik.http.routers.admin.rule=Host(`startover.co.kr`) && PathPrefix(`/admin`)"
- "traefik.http.routers.admin.entrypoints=websecure"
- "traefik.http.routers.admin.tls.certresolver=letsencrypt"
- "traefik.http.routers.admin.middlewares=admin-strip"
- "traefik.http.middlewares.admin-strip.stripprefix.prefixes=/admin"
- "traefik.http.services.admin.loadbalancer.server.port=3000"