fix: nginx

Signed-off-by: Omar Sánchez Pizarro <omar.sanchez@pistacero.net>
This commit is contained in:
Omar Sánchez Pizarro
2026-01-21 00:53:52 +01:00
parent 905966d548
commit 3acad140c5
6 changed files with 61 additions and 32 deletions

View File

@@ -1,7 +1,7 @@
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
root /usr/share/nginx/html/dashboard;
index index.html;
# Gzip compression
@@ -10,22 +10,16 @@ server {
gzip_min_length 1024;
gzip_types text/plain text/css text/xml text/javascript application/x-javascript application/xml+rss application/json application/javascript;
# Dashboard assets con prefijo /dashboard/
location /dashboard/ {
# Cache static assets
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ {
expires 1y;
add_header Cache-Control "public, immutable";
try_files $uri =404;
}
# SPA routing - todas las rutas del dashboard
try_files $uri $uri/ /dashboard/index.html;
# Cache static assets ANTES de SPA routing
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ {
expires 1y;
add_header Cache-Control "public, immutable";
try_files $uri =404;
}
# Redirigir raíz al dashboard
location = / {
return 301 /dashboard/;
# SPA routing - todo desde la raíz del contenedor
location / {
try_files $uri $uri/ /index.html;
}
}

View File

@@ -1,7 +1,7 @@
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
root /usr/share/nginx/html/dashboard;
index index.html;
# Gzip compression
@@ -10,22 +10,16 @@ server {
gzip_min_length 1024;
gzip_types text/plain text/css text/xml text/javascript application/x-javascript application/xml+rss application/json application/javascript;
# Dashboard assets con prefijo /dashboard/
location /dashboard/ {
# Cache static assets
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ {
expires 1y;
add_header Cache-Control "public, immutable";
try_files $uri =404;
}
# SPA routing - todas las rutas del dashboard
try_files $uri $uri/ /dashboard/index.html;
# Cache static assets ANTES de SPA routing
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ {
expires 1y;
add_header Cache-Control "public, immutable";
try_files $uri =404;
}
# Redirigir raíz al dashboard
location = / {
return 301 /dashboard/;
# SPA routing - todo desde la raíz del contenedor
location / {
try_files $uri $uri/ /index.html;
}
}