14 lines
614 B
YAML
14 lines
614 B
YAML
# 선택: gc-frontend nginx 가 직접 443(TLS)을 받는 단독 배포용
|
|
# exdev.co.kr 는 ex-chatbot Caddy(443) → host:80 프록시 — 이 파일 사용하지 않음
|
|
#
|
|
# 사용: docker compose -f docker-compose.yml -f docker-compose.https.yml up -d frontend
|
|
services:
|
|
frontend:
|
|
ports:
|
|
- "${FRONTEND_PORT:-80}:80"
|
|
- "${FRONTEND_HTTPS_PORT:-443}:443"
|
|
volumes:
|
|
- ./frontend/public/desktop/updates:/usr/share/nginx/html/desktop/updates:ro
|
|
- ${SSL_CERT_DIR:-./docker/nginx/ssl}:/etc/nginx/ssl:ro
|
|
- ${CERTBOT_WEBROOT_DIR:-./docker/nginx/certbot-webroot}:/var/www/certbot:ro
|