7a3b421ab2
- backend Express com endpoints Hostinger DNS API - frontend React+Vite+Tailwind com card de API key - docker-compose (frontend:3014, backend:8019, nginx:8021) - Traefik label para subdominio.clube67.com
15 lines
306 B
Plaintext
15 lines
306 B
Plaintext
server {
|
|
listen 8021;
|
|
|
|
location /api/ {
|
|
proxy_pass http://subdominio-backend:8019;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
}
|
|
|
|
location / {
|
|
proxy_pass http://subdominio-frontend:3014;
|
|
proxy_set_header Host $host;
|
|
}
|
|
}
|