From 9a03e8082c368fae32a3dc279ab650430df23beb Mon Sep 17 00:00:00 2001 From: Ricardo Monla Date: Sun, 3 May 2026 01:51:42 -0300 Subject: [PATCH] =?UTF-8?q?feat:=20hosting=20NGINX=20+=20webhook=20Gitea?= =?UTF-8?q?=20para=20deploy=20autom=C3=A1tico?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- deploy.php | 49 ++ deploy_ksaldis.sh | 41 + descargar-curso/descargas/index.html | 1048 +++++++------------------- docs/HOSTING.md | 60 ++ 4 files changed, 432 insertions(+), 766 deletions(-) create mode 100644 deploy.php create mode 100644 deploy_ksaldis.sh create mode 100644 docs/HOSTING.md diff --git a/deploy.php b/deploy.php new file mode 100644 index 0000000..5c6e6cc --- /dev/null +++ b/deploy.php @@ -0,0 +1,49 @@ +&1", $output, $returnCode); + +// Respuesta +header('Content-Type: application/json'); +echo json_encode([ + 'ok' => $returnCode === 0, + 'output' => implode("\n", $output), + 'time' => date('Y-m-d H:i:s') +]); diff --git a/deploy_ksaldis.sh b/deploy_ksaldis.sh new file mode 100644 index 0000000..a349f76 --- /dev/null +++ b/deploy_ksaldis.sh @@ -0,0 +1,41 @@ +#!/bin/bash +# deploy_ksaldis.sh — Script de deploy automático +# Llamado por el webhook de Gitea al hacer push +# +# Clona/actualiza el repo y copia LIBRO_DE_ESTUDIO.html como index.html + +set -e + +REPO_DIR="/var/www/ksaldis-dt/.repo" +WEB_DIR="/var/www/ksaldis-dt" +REPO_URL="http://10.0.10.205:3000/rmonla/rm-KSALDIS-DT.git" +LOG="$WEB_DIR/deploy.log" + +log() { + echo "$(date '+%Y-%m-%d %H:%M:%S') | $1" >> "$LOG" +} + +log "Deploy iniciado" + +# Clonar o actualizar repo +if [ -d "$REPO_DIR/.git" ]; then + cd "$REPO_DIR" + git fetch origin 2>&1 + git reset --hard origin/main 2>&1 + log "git pull OK" +else + git clone "$REPO_URL" "$REPO_DIR" 2>&1 + log "git clone OK" +fi + +# Copiar el libro como index.html +SRC="$REPO_DIR/descargar-curso/descargas/LIBRO_DE_ESTUDIO.html" +if [ -f "$SRC" ]; then + cp "$SRC" "$WEB_DIR/index.html" + log "index.html actualizado ($(wc -c < "$WEB_DIR/index.html") bytes)" +else + log "ERROR: LIBRO_DE_ESTUDIO.html no encontrado en el repo" + exit 1 +fi + +log "Deploy completado" diff --git a/descargar-curso/descargas/index.html b/descargar-curso/descargas/index.html index 900a347..560c1e6 100644 --- a/descargar-curso/descargas/index.html +++ b/descargar-curso/descargas/index.html @@ -1,789 +1,305 @@ - + - - - Curso de Vóley — Dashboard Offline - + /* ── STATS ── */ + .stats-row { + display: flex; + gap: 1rem; + justify-content: center; + flex-wrap: wrap; + margin-bottom: 2.5rem; + } + + .stat-badge { + background: rgba(255, 255, 255, 0.06); + backdrop-filter: blur(12px); + border: 1px solid rgba(255, 255, 255, 0.08); + padding: 0.6rem 1.4rem; + border-radius: 100px; + font-size: 0.88rem; + font-weight: 500; + color: rgba(255, 255, 255, 0.75); + display: flex; + align-items: center; + gap: 0.5rem; + transition: all 0.3s ease; + } + + .stat-badge:hover { + background: rgba(255, 255, 255, 0.1); + border-color: rgba(41, 128, 185, 0.3); + transform: translateY(-2px); + } + + .stat-badge .num { + font-weight: 700; + color: #5dade2; + } + + /* ── CARDS ── */ + .cards-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); + gap: 1.2rem; + max-width: 960px; + width: 100%; + padding: 0 1rem; + } + + .card { + position: relative; + background: rgba(255, 255, 255, 0.04); + backdrop-filter: blur(10px); + border: 1px solid rgba(255, 255, 255, 0.06); + border-radius: 16px; + padding: 2rem 1.5rem; + text-decoration: none; + color: #e0e4ef; + transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); + overflow: hidden; + display: flex; + flex-direction: column; + align-items: center; + text-align: center; + gap: 0.8rem; + } + + .card::before { + content: ''; + position: absolute; + inset: 0; + border-radius: 16px; + padding: 1px; + background: linear-gradient(135deg, rgba(41, 128, 185, 0.3), transparent 50%); + -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); + -webkit-mask-composite: xor; + mask-composite: exclude; + opacity: 0; + transition: opacity 0.35s; + } + + .card:hover { + transform: translateY(-6px); + background: rgba(255, 255, 255, 0.08); + box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(41, 128, 185, 0.1); + } + + .card:hover::before { opacity: 1; } + + .card.primary { + background: linear-gradient(135deg, rgba(231, 76, 60, 0.15), rgba(192, 57, 43, 0.08)); + border-color: rgba(231, 76, 60, 0.2); + } + + .card.primary::before { + background: linear-gradient(135deg, rgba(231, 76, 60, 0.5), transparent 50%); + } + + .card.primary:hover { + background: linear-gradient(135deg, rgba(231, 76, 60, 0.25), rgba(192, 57, 43, 0.15)); + box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(231, 76, 60, 0.15); + } + + .card-icon { + font-size: 2.2rem; + margin-bottom: 0.2rem; + } + + .card-title { + font-size: 1.05rem; + font-weight: 600; + line-height: 1.3; + } + + .card-desc { + font-size: 0.82rem; + color: rgba(255, 255, 255, 0.4); + font-weight: 400; + } + + /* ── FOOTER ── */ + .footer { + text-align: center; + padding: 3rem 2rem; + color: rgba(255, 255, 255, 0.25); + font-size: 0.8rem; + } + + .footer a { + color: rgba(255, 255, 255, 0.35); + text-decoration: none; + border-bottom: 1px solid rgba(255, 255, 255, 0.1); + transition: all 0.2s; + } + + .footer a:hover { + color: rgba(255, 255, 255, 0.6); + border-bottom-color: rgba(41, 128, 185, 0.4); + } + + .footer .separator { + margin: 0 0.5rem; + opacity: 0.3; + } + + /* ── RESPONSIVE ── */ + @media (max-width: 640px) { + .hero { min-height: 60vh; padding: 2rem 1rem; } + .hero h1 { font-size: 1.8rem; } + .hero .subtitle { font-size: 0.95rem; } + .hero-icon { font-size: 3.5rem; } + .cards-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; } + .card { padding: 1.4rem 1rem; } + .stat-badge { font-size: 0.8rem; padding: 0.5rem 1rem; } + } + + @media (max-width: 380px) { + .cards-grid { grid-template-columns: 1fr; } + } + -
-

🏐 Curso de Entrenador Nacional de Vóley

-

Contenido descargado — Navegación offline

-
-
📚 2 módulos
-
📖 11 secciones
-
🎬 42 videos
-
📄 32 archivos
-
-
-
- -
-
-

Módulo 1 — Planificación

- -
-
- -
-
-

Planificación 13

- -
-
-
- - - - +
+
+
🏐
+

Curso de Entrenador Nacional de Vóley

+

Material de Estudio — Versión Offline

+ +
+
📚 2 módulos
+
📂 11 secciones
+
🎥 42 videos
-

Planificacion

-
-
Extraído el 2026-05-02
-
-

PLANIFICACION

-

PREPARACION ATLETICA

-

EXPLICACION DEL TRABAJO PRACTICO A PRESENTAR

-

SEGUIMIENTOS DE EQUIPOS

-

ANALISIS DE EQUIPOS DE VOLEIBOL

-

ANALISIS DE EQUIPOS DE VOLEIBOL 2

-

TRABAJO PRACTICO FINAL DE LA UNIDAD

-
-
  • - 1170245111 - Video 1 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/1170245111" -
-
  • 🔗 Abrir Archivo — https://voley.onlineeducation.center/es/campus/student/training/e/14197/m/19096/s/34868/study-resources/50320/show?me=140219
  • 🔗 Abrir Archivo — https://voley.onlineeducation.center/es/campus/student/training/e/14197/m/19096/s/34868/study-resources/52903/show?me=142139
  • 🔗 Abrir Enlace — https://voley.onlineeducation.center/es/campus/student/training/e/14197/m/19096/s/34868/study-resources/46541/show?me=140221
  • 🔗 Abrir Archivo — https://voley.onlineeducation.center/es/campus/student/training/e/14197/m/19096/s/34868/study-resources/46723/show?me=140222
  • 🔗 Abrir Archivo — https://voley.onlineeducation.center/es/campus/student/training/e/14197/m/19096/s/34868/study-resources/46724/show?me=140223
  • 🔗 Abrir Enlace — https://voley.onlineeducation.center/es/campus/student/training/e/14197/m/19096/s/34868/study-resources/50142/show?me=140224
  • 🔗 Abrir Enlace — https://voley.onlineeducation.center/es/campus/student/training/e/14197/m/19096/s/34868/study-resources/50145/show?me=140225
  • 🔗 Abrir Enlace — https://voley.onlineeducation.center/es/campus/student/training/e/14197/m/19096/s/34868/study-resources/50144/show?me=140226
  • 📎 archivo_46541_Abrir_Enlace.bin (333.9 KB)
  • 📎 archivo_50142_Abrir_Enlace.bin (311.7 KB)
  • 📎 archivo_50144_Abrir_Enlace.bin (312.9 KB)
  • 📎 archivo_50145_Abrir_Enlace.bin (323.2 KB)
- -
-
- -
-
-

Preparación Atlética 19

- -
-
-
- - - - + -

Preparacion Atletica

-
-
Extraído el 2026-05-02
-
-

PLANIFICACION

-

PREPARACION ATLETICA

-

EXPLICACION DEL TRABAJO PRACTICO A PRESENTAR

-

SEGUIMIENTOS DE EQUIPOS

-

ANALISIS DE EQUIPOS DE VOLEIBOL

-

ANALISIS DE EQUIPOS DE VOLEIBOL 2

-

TRABAJO PRACTICO FINAL DE LA UNIDAD

-
-
  • - 1173231315 - Video 1 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/1173231315" -
  • - 1063655414 - Video 2 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/1063655414" -
  • - 1063657248 - Video 3 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/1063657248" -
-
  • 🔗 Abrir Archivo — https://voley.onlineeducation.center/es/campus/student/training/e/14197/m/19096/s/34869/study-resources/53012/show?me=142522
  • 🔗 Abrir Archivo — https://voley.onlineeducation.center/es/campus/student/training/e/14197/m/19096/s/34869/study-resources/53137/show?me=142648
  • 🔗 Abrir Archivo — https://voley.onlineeducation.center/es/campus/student/training/e/14197/m/19096/s/34869/study-resources/53138/show?me=142649
  • 🔗 Abrir Archivo — https://voley.onlineeducation.center/es/campus/student/training/e/14197/m/19096/s/34869/study-resources/53139/show?me=142650
  • 🔗 Abrir Archivo — https://voley.onlineeducation.center/es/campus/student/training/e/14197/m/19096/s/34869/study-resources/46719/show?me=140229
  • 🔗 Abrir Archivo — https://voley.onlineeducation.center/es/campus/student/training/e/14197/m/19096/s/34869/study-resources/50329/show?me=140232
  • 🔗 Abrir Archivo — https://voley.onlineeducation.center/es/campus/student/training/e/14197/m/19096/s/34869/study-resources/46726/show?me=140233
  • 🔗 Abrir Enlace — https://voley.onlineeducation.center/es/campus/student/training/e/14197/m/19096/s/34869/study-resources/50139/show?me=140234
  • 🔗 Abrir Archivo — https://voley.onlineeducation.center/es/campus/student/training/e/14197/m/19096/s/34869/study-resources/46725/show?me=140235
  • 🔗 Abrir Enlace — https://voley.onlineeducation.center/es/campus/student/training/e/14197/m/19096/s/34869/study-resources/50140/show?me=140236
  • 🔗 Abrir Enlace — https://voley.onlineeducation.center/es/campus/student/training/e/14197/m/19096/s/34869/study-resources/50143/show?me=140237
  • 🔗 Abrir Enlace — https://voley.onlineeducation.center/es/campus/student/training/e/14197/m/19096/s/34869/study-resources/50141/show?me=140238
  • 📎 archivo_50139_Abrir_Enlace.bin (337.8 KB)
  • 📎 archivo_50140_Abrir_Enlace.bin (332.1 KB)
  • 📎 archivo_50141_Abrir_Enlace.bin (363.5 KB)
  • 📎 archivo_50143_Abrir_Enlace.bin (322.9 KB)
- -
- + -
-
-

Explicación del TP 2

- -
-
-
- - - - -
-

Explicacion TP

-
-
Extraído el 2026-05-02
-
-

PLANIFICACION

-

PREPARACION ATLETICA

-

EXPLICACION DEL TRABAJO PRACTICO A PRESENTAR

-

SEGUIMIENTOS DE EQUIPOS

-

ANALISIS DE EQUIPOS DE VOLEIBOL

-

ANALISIS DE EQUIPOS DE VOLEIBOL 2

-

TRABAJO PRACTICO FINAL DE LA UNIDAD

-
-
  • - 1173576229 - Video 1 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/1173576229" -
-
  • 🔗 Abrir Archivo — https://voley.onlineeducation.center/es/campus/student/training/e/14197/m/19096/s/34870/study-resources/53173/show?me=142686
- -
-
- +
+

KSALDIS-DT · Contenido extraído del campus Online Education Center

+
-
-
-

Seguimientos de Equipos

- -
-
-
- - -
-

Seguimientos Equipos

-
-

Oops! An Error Occurred

-

The server returned a "500 Internal Server Error".

-

Something is broken. Please let us know what you were doing when this error occurred. We will fix it as soon as possible. Sorry for any inconvenience caused.

-
- -
-
- - -
-
-

Análisis de Equipos 1

- -
-
-
- - -
-

Analisis Equipos 1

-
-

Oops! An Error Occurred

-

The server returned a "500 Internal Server Error".

-

Something is broken. Please let us know what you were doing when this error occurred. We will fix it as soon as possible. Sorry for any inconvenience caused.

-
- -
-
- - -
-
-

Análisis de Equipos 2

- -
-
-
- - -
-

Analisis Equipos 2

-
-

Oops! An Error Occurred

-

The server returned a "500 Internal Server Error".

-

Something is broken. Please let us know what you were doing when this error occurred. We will fix it as soon as possible. Sorry for any inconvenience caused.

-
- -
-
- - -
-
-

TP Final de la Unidad

- -
-
-
- - -
-

TP Final Unidad

-
-

Oops! An Error Occurred

-

The server returned a "500 Internal Server Error".

-

Something is broken. Please let us know what you were doing when this error occurred. We will fix it as soon as possible. Sorry for any inconvenience caused.

-
- -
-
- -
-
- - -
-
-

Módulo 2 — Entrenamiento

- -
-
- -
-
-

Centrales y Opuestos/as 25

- -
-
-
- - - - -
-

Centrales y Oponentes

-
-
Extraído el 2026-05-02
-
-

PLANIFICACION

-

PREPARACION ATLETICA

-

EXPLICACION DEL TRABAJO PRACTICO A PRESENTAR

-

SEGUIMIENTOS DE EQUIPOS

-

ANALISIS DE EQUIPOS DE VOLEIBOL

-

ANALISIS DE EQUIPOS DE VOLEIBOL 2

-

TRABAJO PRACTICO FINAL DE LA UNIDAD

-
-
  • - 919369433 - Video 1 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/919369433" -
  • - 1179197191 - Video 2 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/1179197191" -
  • - 919341704 - Video 3 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/919341704" -
  • - 919342668 - Video 4 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/919342668" -
  • - 919346562 - Video 5 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/919346562" -
  • - 919347866 - Video 6 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/919347866" -
  • - 919348493 - Video 7 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/919348493" -
  • - 919351892 - Video 8 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/919351892" -
  • - 919352848 - Video 9 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/919352848" -
  • - 919353448 - Video 10 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/919353448" -
  • - 919354134 - Video 11 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/919354134" -
  • - 919355668 - Video 12 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/919355668" -
  • - 919356423 - Video 13 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/919356423" -
  • - 919357109 - Video 14 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/919357109" -
  • - 919358607 - Video 15 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/919358607" -
  • - 919359386 - Video 16 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/919359386" -
  • - 919359855 - Video 17 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/919359855" -
  • - 919360318 - Video 18 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/919360318" -
  • - 919363158 - Video 19 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/919363158" -
  • - 919363728 - Video 20 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/919363728" -
  • - 919364522 - Video 21 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/919364522" -
  • - 919365485 - Video 22 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/919365485" -
  • - 919366263 - Video 23 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/919366263" -
-
  • 🔗 Abrir Archivo — https://voley.onlineeducation.center/es/campus/student/training/e/14197/m/19097/s/35519/study-resources/46874/show?me=142960
  • 🔗 Abrir Archivo — https://voley.onlineeducation.center/es/campus/student/training/e/14197/m/19097/s/35519/study-resources/46805/show?me=142961
- -
-
- - -
-
-

Puntas y Liberos/as 13

- -
-
-
- - - - -
-

Puntas y Liberos

-
-
Extraído el 2026-05-02
-
-

PLANIFICACION

-

PREPARACION ATLETICA

-

EXPLICACION DEL TRABAJO PRACTICO A PRESENTAR

-

SEGUIMIENTOS DE EQUIPOS

-

ANALISIS DE EQUIPOS DE VOLEIBOL

-

ANALISIS DE EQUIPOS DE VOLEIBOL 2

-

TRABAJO PRACTICO FINAL DE LA UNIDAD

-
-
  • - 1179888270 - Video 1 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/1179888270" -
  • - 921876274 - Video 2 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/921876274" -
  • - 921873304 - Video 3 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/921873304" -
  • - 921873724 - Video 4 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/921873724" -
  • - 921873953 - Video 5 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/921873953" -
  • - 921874753 - Video 6 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/921874753" -
  • - 921875020 - Video 7 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/921875020" -
  • - 921875302 - Video 8 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/921875302" -
  • - 921875519 - Video 9 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/921875519" -
  • - 921875778 - Video 10 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/921875778" -
  • - 921879520 - Video 11 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/921879520" -
  • - 921879925 - Video 12 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/921879925" -
-
  • 🔗 Abrir Archivo — https://voley.onlineeducation.center/es/campus/student/training/e/14197/m/19097/s/35520/study-resources/46926/show?me=143177
- -
-
- - -
-
-

Entrenamiento de Armadoras 1

- -
-
-
- - - -
-

Entrenamiento Armadoras

-
-
Extraído el 2026-05-02
-
-

PLANIFICACION

-

PREPARACION ATLETICA

-

EXPLICACION DEL TRABAJO PRACTICO A PRESENTAR

-

SEGUIMIENTOS DE EQUIPOS

-

ANALISIS DE EQUIPOS DE VOLEIBOL

-

ANALISIS DE EQUIPOS DE VOLEIBOL 2

-

TRABAJO PRACTICO FINAL DE LA UNIDAD

-
-
  • - 1181188693 - Video 1 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/1181188693" -
- -
-
- - -
-
-

Explicación del TP 1

- -
-
-
- - - -
-

Explicacion TP

-
-
Extraído el 2026-05-02
-
-

PLANIFICACION

-

PREPARACION ATLETICA

-

EXPLICACION DEL TRABAJO PRACTICO A PRESENTAR

-

SEGUIMIENTOS DE EQUIPOS

-

ANALISIS DE EQUIPOS DE VOLEIBOL

-

ANALISIS DE EQUIPOS DE VOLEIBOL 2

-

TRABAJO PRACTICO FINAL DE LA UNIDAD

-
-
  • - 1181892359 - Video 1 - ▶ Ver online -
    yt-dlp "https://player.vimeo.com/video/1181892359" -
- -
-
- -
-
- -
- - - - - \ No newline at end of file + diff --git a/docs/HOSTING.md b/docs/HOSTING.md new file mode 100644 index 0000000..bc38364 --- /dev/null +++ b/docs/HOSTING.md @@ -0,0 +1,60 @@ +# HOSTING — Despliegue en Servidor NGINX Privado + +> Última actualización: 2026-05-03 + +## Servidor + +| Parámetro | Valor | +|---|---| +| **IP** | `10.0.10.117` | +| **Acceso SSH** | `ssh rmonla@10.0.10.117` | +| **Dominio público** | `rmonla.duckdns.org` (SSL Let's Encrypt) | +| **Web Server** | NGINX | + +## URL de Acceso + +| Entorno | URL | +|---|---| +| **Red local** | `http://10.0.10.117/ksaldis-dt` | +| **Público** | `https://rmonla.duckdns.org/ksaldis-dt` | + +## Qué se Sirve + +Un único archivo `index.html` con el **Libro de Estudio completo** del Curso de Entrenador Nacional de Vóley. Es contenido estático puro, autónomo, sin dependencias externas. + +``` +/var/www/ksaldis-dt/ +└── index.html ← LIBRO_DE_ESTUDIO.html renombrado +``` + +## Configuración NGINX + +Archivo: `/etc/nginx/sites-available/default` + +Bloque dentro del `server {}` principal: + +```nginx +# Ruta /ksaldis-dt — Material de estudio de Voley +location /ksaldis-dt { + alias /var/www/ksaldis-dt; + index index.html; + try_files $uri $uri/ =404; + autoindex on; +} +``` + +## Deploy / Actualización + +Cuando se regenera el libro con `node generar_dashboard.mjs`, subir la nueva versión: + +```bash +scp descargar-curso/descargas/LIBRO_DE_ESTUDIO.html rmonla@10.0.10.117:/var/www/ksaldis-dt/index.html +``` + +## Otros Sitios en el Mismo Servidor + +| Ruta | Directorio | Tipo | +|---|---|---| +| `/` | `/var/www/html` | Estática | +| `/vcby` | `/var/www/vcby` | PHP (ViaCrucis) | +| `/ksaldis-dt` | `/var/www/ksaldis-dt` | Estática |