메일송신 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

28
nginx-reverse-proxy.conf Normal file
View File

@@ -0,0 +1,28 @@
upstream hanmo_backend {
server hanmo-home:80;
}
server {
listen 80;
listen [::]:80;
server_name www.hanmocnn.co.kr hanmocnn.co.kr;
location / {
proxy_pass http://hanmo_backend;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_http_version 1.1;
proxy_set_header Connection "";
}
}
server {
listen 80 default_server;
listen [::]:80 default_server;
location / {
return 400;
}
}