diff --git a/README.md b/README.md index 9167235..6614416 100644 --- a/README.md +++ b/README.md @@ -332,6 +332,7 @@ sudo tail -f /var/log/nginx/napi-error.log # Nginx errors | `twemoji is not defined` | Falta `twemoji.min.js` en el root del site | `sudo cp /var/www/napi/twemoji.min.js /var/www/napiN/` | | `404` en `/notas.md` | Carpeta del alumno no existe en `data/` | Crear carpeta + copiar plantilla | | sshfs zombie | Conexión SSH caída | `fusermount -uz ~/napi-dataN && systemctl --user restart ...mount` | +| Emacs muestra datos stale tras editar | sshfs cachea lecturas del kernel | Añadir `auto_cache` a las Options del mount (ver abajo) | | Watcher no detecta re-entregas | Versión antigua del watcher | Actualizar a v7+ y reiniciar servicio | | `__pycache__` en notificaciones | Watcher < v6 | Actualizar a v7+ | @@ -355,4 +356,5 @@ sudo tail -f /var/log/nginx/napi-error.log # Nginx errors | 2026-02-22 | MVP desplegado: notas.qu3v3d0.tech para DDAW2 (19 alumnos) | | 2026-02-25 | ASIR1 desplegado: asir1.qu3v3d0.tech para Programación (21 alumnos) | | 2026-02-25 | Watcher ASIR1 v7: batching, re-entregas, Windows-safe, __pycache__ filter, nombres completos | +| 2026-03-02 | sshfs mounts: añadido `auto_cache` para evitar datos stale en Emacs | | 2027-02-04 | Renovar certificado SSL wildcard (caduca ~365 días desde 2026-02-04) | diff --git a/scripts/home-fenix-napi-data.mount b/scripts/home-fenix-napi-data.mount index 213e981..b0a603b 100644 --- a/scripts/home-fenix-napi-data.mount +++ b/scripts/home-fenix-napi-data.mount @@ -7,7 +7,7 @@ Wants=network-online.target What=fenix@qu3v3d0.tech:/var/www/napi/data Where=/home/fenix/napi-data Type=fuse.sshfs -Options=reconnect,ServerAliveInterval=15,ServerAliveCountMax=3,IdentityFile=/home/fenix/.ssh/id_rsa,_netdev,allow_other +Options=reconnect,ServerAliveInterval=15,ServerAliveCountMax=3,IdentityFile=/home/fenix/.ssh/id_rsa,_netdev,allow_other,auto_cache [Install] WantedBy=default.target diff --git a/scripts/home-fenix-napi-data2.mount b/scripts/home-fenix-napi-data2.mount index f0c1c0c..0ecf29e 100644 --- a/scripts/home-fenix-napi-data2.mount +++ b/scripts/home-fenix-napi-data2.mount @@ -7,7 +7,7 @@ Wants=network-online.target What=fenix@qu3v3d0.tech:/var/www/napi2/data Where=/home/fenix/napi-data2 Type=fuse.sshfs -Options=reconnect,ServerAliveInterval=15,ServerAliveCountMax=3,IdentityFile=/home/fenix/.ssh/id_rsa,_netdev,allow_other +Options=reconnect,ServerAliveInterval=15,ServerAliveCountMax=3,IdentityFile=/home/fenix/.ssh/id_rsa,_netdev,allow_other,auto_cache [Install] WantedBy=default.target