메일송신 mailJS , 영/한 전환 적용ㅁ

This commit is contained in:
Wind
2026-02-15 11:12:43 +09:00
parent 6e9a7ed81b
commit a0a212e41c
43 changed files with 6713 additions and 536 deletions

View File

@@ -1,23 +1,27 @@
version: '3.8'
services:
# 1. 관리 도구 (Nginx Proxy Manager)
# 1. Nginx Proxy Manager
npm:
image: 'jc21/nginx-proxy-manager:latest'
container_name: npm-admin
restart: unless-stopped
ports:
- '80:80' # HTTP 외부 접속용
- '81:81' # 관리자 화면 접속용 (HMI 역할)
- '443:443' # HTTPS 보안 접속용
- '80:80'
- '81:81'
- '443:443'
volumes:
- ./npm/data:/data
- ./npm/letsencrypt:/etc/letsencrypt
networks:
- default
- mailcow-network
# 2. 실제 홈페이지 (공사 중 페이지)
# 2. 메인 홈페이지
web-server:
image: nginx:alpine
container_name: hanmo-home
restart: unless-stopped
ports:
- '8081:80'
volumes:
- ./html:/usr/share/nginx/html:ro
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
@@ -25,7 +29,7 @@ services:
- default
- mailcow-network
# 3. Contact Form Email Handler
# 3. 메일 연락처 핸들러
mail-contact:
build: .
container_name: hanmo-mail-contact
@@ -40,6 +44,7 @@ services:
- mailcow-network
networks:
default:
mailcow-network:
external: true
name: mailcowdockerized_mailcow-network
name: mailcowdockerized_mailcow-network