Files
Elecciones-2025/Elecciones-Web/frontend/frontend.nginx.conf

17 lines
359 B
Plaintext
Raw Normal View History

2025-09-03 14:16:18 -03:00
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
2025-09-03 14:55:19 -03:00
location / {
try_files $uri $uri/ /index.html;
}
2025-09-03 17:38:05 -03:00
# Esta sección separada es buena práctica
location ~* \.(?:css|js|jpg|jpeg|gif|png|ico|svg|woff|woff2)$ {
expires 1y;
add_header Cache-Control "public";
}
2025-09-03 14:16:18 -03:00
}