18 lines
444 B
Plaintext
18 lines
444 B
Plaintext
server {
|
|
listen 80;
|
|
server_name bitacoras.midominio.com; # <--- CAMBIAR POR DOMINIO REAL
|
|
|
|
# Frontend
|
|
location / {
|
|
proxy_pass http://127.0.0.1:5173;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
}
|
|
|
|
# Backend API (Opcional: usar /api o subdominio api.bitacoras...)
|
|
location /api/ {
|
|
proxy_pass http://127.0.0.1:3001/;
|
|
proxy_set_header Host $host;
|
|
}
|
|
}
|