From d7189c1a6ed73a80fdb11840fcf84baaae4124b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Pedro=20Toledo?= Date: Mon, 2 Feb 2026 21:16:14 -0300 Subject: [PATCH] UI/UX: Premium styling, centered search, updated palette --- .gemini/stylesheets/extra.css | 146 +++++++-- build_log_final.txt | 578 ++++++++++++++++++++++++++++++++++ mkdocs.yml | 14 +- 3 files changed, 707 insertions(+), 31 deletions(-) create mode 100644 build_log_final.txt diff --git a/.gemini/stylesheets/extra.css b/.gemini/stylesheets/extra.css index 58e0ae3..55d7a15 100644 --- a/.gemini/stylesheets/extra.css +++ b/.gemini/stylesheets/extra.css @@ -1,68 +1,166 @@ -/* iT Guys Standard Documentation Style */ +/* iT Guys Premium Documentation Style */ + +/* HEADER LAYOUT CUSTOMIZATION */ +/* Centering Search & Spacing Toggle */ +@media screen and (min-width: 76.25em) { + .md-header__inner { + max-width: 95% !important; /* Wider header */ + display: flex; + justify-content: space-between; + } + + /* Force Title to Left */ + .md-header__title { + flex-grow: 0; + min-width: 200px; + } + + /* Center the Search Bar */ + .md-search { + flex-grow: 1; + margin: 0 4rem !important; /* Spacing from title and toggle */ + max-width: 600px; /* Limit search width */ + display: flex; + justify-content: center; + } + + .md-search__inner { + width: 100%; + } + + /* Push Theme Toggle to Right */ + .md-header__option { + margin-left: 1rem; + } +} + +/* GLOBAL AESTHETICS */ +:root { + --md-primary-fg-color: #3949ab; /* Indigo 600 */ + --md-primary-fg-color--light: #5c6bc0; + --md-primary-fg-color--dark: #283593; + + /* Premium Shadows */ + --md-shadow-z1: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + --md-shadow-z2: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); +} /* Headers */ h1 { - color: #1478cf !important; - font-weight: 700 !important; + color: var(--md-primary-fg-color) !important; + font-weight: 800 !important; + letter-spacing: -0.5px; margin-bottom: 1.5rem !important; } h2 { - color: #1478cf !important; - border-bottom: 2px solid #1478cf; + color: var(--md-primary-fg-color--dark) !important; + border-bottom: 2px solid var(--md-primary-fg-color--light); padding-bottom: 0.5rem; - margin-top: 2rem !important; + margin-top: 2.5rem !important; + font-weight: 700; } h3 { - color: #333; + color: #444; font-weight: 600; + margin-top: 1.5rem !important; } -/* Dark mode adjustments for headers */ +/* Dark mode adjustments */ [data-md-color-scheme="slate"] h3 { color: #e5e5e5; } +[data-md-color-scheme="slate"] { + --md-primary-fg-color: #5c6bc0; /* Lighter Indigo for Dark Mode */ + --md-primary-fg-color--dark: #7986cb; +} -/* Tables - Matching PDF style */ +/* TABLES (Clean & Modern) */ .md-typeset table:not([class]) { - border-radius: 4px; - box-shadow: 0 2px 4px rgba(0,0,0,0.1); + border-radius: 8px; + box-shadow: var(--md-shadow-z1); overflow: hidden; + border-collapse: collapse; font-size: 0.9em; + border: none !important; } .md-typeset table:not([class]) th { - background-color: #1478cf; + background-color: var(--md-primary-fg-color); color: white !important; - font-weight: bold; + font-weight: 700; + text-transform: uppercase; + letter-spacing: 0.5px; + padding: 12px !important; + border: none !important; } -/* Button override */ +.md-typeset table:not([class]) td { + padding: 12px !important; + border-bottom: 1px solid #eee; +} + +[data-md-color-scheme="slate"] .md-typeset table:not([class]) td { + border-bottom: 1px solid #444; +} + +/* BUTTONS */ .md-button { - font-weight: bold; - border-radius: 4px; + font-weight: 700; + border-radius: 6px; + letter-spacing: 0.5px; + text-transform: uppercase; + font-size: 0.75rem; + transition: all 0.2s ease; } .md-button--primary { - background-color: #1478cf !important; + background-color: var(--md-primary-fg-color) !important; color: white !important; + box-shadow: var(--md-shadow-z1); } -/* Fix for the download button appearing inline */ +.md-button--primary:hover { + background-color: var(--md-primary-fg-color--dark) !important; + box-shadow: var(--md-shadow-z2); + transform: translateY(-1px); +} + +/* Download PDF Button Styling */ .download-pdf-btn { - display: inline-block; - margin-bottom: 2rem; + display: inline-flex; + align-items: center; + gap: 8px; + background: linear-gradient(135deg, #FF5252 0%, #D32F2F 100%); + color: white !important; + padding: 8px 16px; + border-radius: 20px; text-decoration: none; + font-weight: bold; + font-size: 0.85em; + margin-bottom: 2rem; + box-shadow: 0 4px 6px rgba(211, 47, 47, 0.2); + transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } -/* Hiding "Made with Material" text node and link */ +.download-pdf-btn:hover { + transform: translateY(-2px); + box-shadow: 0 6px 12px rgba(211, 47, 47, 0.3); +} + +.download-pdf-btn::before { + content: "📄"; /* Fallback icon */ + font-size: 1.1em; +} + +/* Footer Cleanup */ .md-copyright { - font-size: 0 !important; /* Hides "Made with" text */ + font-size: 0 !important; } .md-copyright__highlight { - font-size: 0.64rem !important; /* Restores size for our copyright */ + font-size: 0.8rem !important; display: inline-block; + opacity: 0.8; } - diff --git a/build_log_final.txt b/build_log_final.txt new file mode 100644 index 0000000..9682814 --- /dev/null +++ b/build_log_final.txt @@ -0,0 +1,578 @@ +#0 building with "desktop-linux" instance using docker driver + +#1 [internal] load build definition from Dockerfile +#1 transferring dockerfile: 1.09kB done +#1 WARN: FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line 1) +#1 DONE 0.0s + +#2 [auth] library/python:pull token for registry-1.docker.io +#2 DONE 0.0s + +#3 [auth] library/nginx:pull token for registry-1.docker.io +#3 DONE 0.0s + +#4 [internal] load metadata for docker.io/library/nginx:alpine +#4 DONE 1.2s + +#5 [internal] load metadata for docker.io/library/python:3.11-slim +#5 DONE 1.2s + +#6 [internal] load .dockerignore +#6 transferring context: 104B done +#6 DONE 0.0s + +#7 [builder 1/8] FROM docker.io/library/python:3.11-slim@sha256:5be45dbade29bebd6886af6b438fd7e0b4eb7b611f39ba62b430263f82de36d2 +#7 resolve docker.io/library/python:3.11-slim@sha256:5be45dbade29bebd6886af6b438fd7e0b4eb7b611f39ba62b430263f82de36d2 0.1s done +#7 DONE 0.1s + +#8 [stage-1 1/2] FROM docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2 +#8 resolve docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2 0.1s done +#8 DONE 0.1s + +#9 [internal] load build context +#9 transferring context: 208.84kB 0.2s done +#9 DONE 0.2s + +#10 [builder 2/8] RUN apt-get update && apt-get install -y build-essential pkg-config libcairo2-dev git python3-cffi python3-brotli libpango-1.0-0 libpangoft2-1.0-0 libharfbuzz-subset0 libjpeg-dev libopenjp2-7-dev libffi-dev && rm -rf /var/lib/apt/lists/* +#10 CACHED + +#11 [builder 3/8] WORKDIR /app +#11 CACHED + +#12 [builder 4/8] COPY requirements.txt . +#12 CACHED + +#13 [builder 5/8] RUN pip install --no-cache-dir -r requirements.txt +#13 CACHED + +#14 [builder 6/8] RUN git config --global --add safe.directory /app +#14 CACHED + +#15 [builder 7/8] COPY . . +#15 DONE 0.4s + +#16 [builder 8/8] RUN python .gemini/build_site.py +#16 0.881 Found 132 manuals to convert. +#16 1.271 Could not get image data from src attribute: /app/_site_src/docs/Windows/assets/ad_new_user.png +#16 1.271 'Exemplo de Cria├Âș├Ășo' +#16 2.532 Could not get image data from src attribute: /app/_site_src/docs/Exchange/assets/sconfig_menu.png +#16 2.532 'Exemplo do Menu SConfig' +#16 9.293 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png +#16 9.293 'General Settings' +#16 11.25 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png +#16 11.25 'Wizard Completed' +#16 11.35 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png +#16 11.35 'Categorias Suricata' +#16 12.44 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_install_docker.png +#16 12.44 'Terminal Install Docker' +#16 12.52 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_create_group.png +#16 12.52 'Tela de Cria├Âș├Ășo de Grupo' +#16 12.70 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_telegram_integr.png +#16 12.70 'Integration Telegram' +#16 12.77 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_calendar_setup.png +#16 12.77 'Configura├Âș├Ășo de Calendário' +#16 12.93 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_ticket_creation.png +#16 12.93 'Tela de Abertura de Ticket' +#16 12.95 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_ticket_merge.png +#16 12.95 'Menu de Fus├Ășo de Tickets' +#16 13.03 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_trigger_setup.png +#16 13.03 'Configura├Âș├Ășo de Trigger' +#16 13.99 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/replication_task.png +#16 13.99 'Tarefa de Replica├Âș├Ășo' +#16 14.08 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/zfs_architecture.png +#16 14.08 'Diagrama de VDEVs ZFS' +#16 14.22 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/dataset_acl.png +#16 14.22 'Editor de ACL TrueNAS' +#16 14.31 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/dashboard_alert.png +#16 14.31 'Exemplo de Alerta' +#16 14.55 Could not get image data from src attribute: /app/_site_src/docs/Virtualizacao/assets/proxmox_login.png +#16 14.55 'Tela de Login Proxmox' +#16 14.83 Could not get image data from src attribute: /app/_site_src/docs/Vmware/assets/vcenter_summary.png +#16 14.83 'Painel Summary vCenter' +#16 15.22 Could not get image data from src attribute: /app/_site_src/docs/Vmware/assets/vsphere_login.png +#16 15.22 'Tela de Login vSphere' +#16 15.26 Processing [Nível 1] Vis├Ășo Geral E Escopo.md Ă”Ă¶ĂŒĂ”Ă¶ĂŒĂ”Ă¶ĂŒĂ”Ă¶ĂŒĂ”Ă¶ĂŒĂ”Ă¶ĂŒĂ”Ă¶ĂŒĂ”Ă¶ĂŒĂ”Ă¶ĂŒĂ”Ă¶ĂŒĂ”Ă¶ĂŒĂ”Ă¶ĂŒĂ”Ă¶ĂŒĂ”Ă¶ĂŒĂ”Ă¶ĂŒĂ”Ă¶ĂŒĂ”Ă¶ĂŒĂ”Ă¶ĂŒĂ”Ă¶ĂŒĂ”Ă¶ĂŒĂ”Ă¶ĂŒĂ”Ă¶ĂŒĂ”Ă¶ĂŒĂ”Ă¶ĂŒĂ”Ă¶ĂŒĂ”Ă¶ĂŒĂ”Ă¶ĂŒĂ”Ă¶ĂŒ 100% +#16 15.26 ÔĂČ¥ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ Summary ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔĂČ« +#16 15.26 Ôöé Batch Complete. Ôöé +#16 15.26 Ôöé Success: 132 Ôöé +#16 15.26 Ôöé Errors: 0 Ôöé +#16 15.26 ÔĂČ░ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔĂČ» +#16 15.67 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs' has no git logs, using current timestamp +#16 15.67 INFO - Cleaning site directory +#16 15.67 INFO - Building documentation to directory: /app/_site_src/site +#16 15.77 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/index.md' has no git logs, using current timestamp +#16 15.78 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 1] Verifica├Âș├Ășo Diária De Jobs De Vm.md' has no git logs, using current timestamp +#16 15.78 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 3] Cria├Âș├Ășo De Rotinas De Teste De Restore (Surebackup).md' has no git logs, using current timestamp +#16 15.78 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 2] Restaura├Âș├Ășo De Arquivos Guest (WindowsLinux).md' has no git logs, using current timestamp +#16 15.78 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 2] Instant Vm Recovery (Restaura├Âș├Ășo Rápida).md' has no git logs, using current timestamp +#16 15.78 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 1] Diagn├│stico De Conectividade De Bancos De Dados.md' has no git logs, using current timestamp +#16 15.79 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 3] Configura├Âș├Ășo De Reposit├│rios Imutáveis (Hardened Linux).md' has no git logs, using current timestamp +#16 15.79 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 1] Backup E Restore Manual (Dump).md' has no git logs, using current timestamp +#16 15.79 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 1] Procedimento de Backup e Restore Manual.md' has no git logs, using current timestamp +#16 15.79 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 1] Diagn├│stico de Conectividade e Status.md' has no git logs, using current timestamp +#16 15.79 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Instala├Âș├Ășo E Configura├Âș├Ășo Base De Bancos De Dados.md' has no git logs, using current timestamp +#16 15.79 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Instala├Âș├Ășo e Configura├Âș├Ășo Base.md' has no git logs, using current timestamp +#16 15.80 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Gest├Ășo de Usuários e Permiss├Áes.md' has no git logs, using current timestamp +#16 15.80 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Gest├Ășo De Usuários E Permiss├Áes De Banco.md' has no git logs, using current timestamp +#16 15.80 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Redes_e_Firewall_Docker.md' has no git logs, using current timestamp +#16 15.81 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 3] Tuning E Performance De Bancos De Dados.md' has no git logs, using current timestamp +#16 15.81 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 3] Arquitetura de Persistência e Troubleshooting Avan├Âșado.md' has no git logs, using current timestamp +#16 15.81 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 3] Tuning de Performance e Otimiza├Âș├Ășo.md' has no git logs, using current timestamp +#16 15.81 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Manuten├Âș├Ășo Preventiva E Logs De Banco.md' has no git logs, using current timestamp +#16 15.81 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Volumes_e_Persistencia_Docker.md' has no git logs, using current timestamp +#16 15.81 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 0] Docker Para Desenvolvedores E Ferramentas Portáteis.md' has no git logs, using current timestamp +#16 15.81 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Manuten├Âș├Ășo Preventiva e Logs.md' has no git logs, using current timestamp +#16 15.82 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 1] Deploy E Acesso Ao Portainer Ce.md' has no git logs, using current timestamp +#16 15.82 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 1] Gest├Ășo De Stacks No Portainer.md' has no git logs, using current timestamp +#16 15.82 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 1] Instala├Âș├Ășo E Configura├Âș├Ășo Do Docker E Compose (Linux).md' has no git logs, using current timestamp +#16 15.82 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 2] Healthchecks E Scripts Automatizados No Docker.md' has no git logs, using current timestamp +#16 15.82 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 2] Redes E Firewall No Docker.md' has no git logs, using current timestamp +#16 15.83 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_exchange_server_official.md' has no git logs, using current timestamp +#16 15.83 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 2] Volumes E Persistência De Dados No Docker.md' has no git logs, using current timestamp +#16 15.83 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_admin_senior_exchange.md' has no git logs, using current timestamp +#16 15.83 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 3] Kubernetes Vis├Ășo Geral E Ferramentas Básicas.md' has no git logs, using current timestamp +#16 15.83 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_suporte_n1_exchange.md' has no git logs, using current timestamp +#16 15.83 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 3] Docker Swarm Inicializa├Âș├Ășo E Gerenciamento.md' has no git logs, using current timestamp +#16 15.83 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_operacoes_manutencao.md' has no git logs, using current timestamp +#16 15.84 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_service_desk_troubleshooting.md' has no git logs, using current timestamp +#16 15.84 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_usuario_webmail_outlook.md' has no git logs, using current timestamp +#16 15.84 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_arquitetura_tecnica.md' has no git logs, using current timestamp +#16 15.84 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 0] Como Configurar Resposta Automatica de Ferias.md' has no git logs, using current timestamp +#16 15.84 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 1] Cria├Âș├Ășo E Bloqueio De Usuários.md' has no git logs, using current timestamp +#16 15.84 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 0] Configura├Âș├Ășo De Resposta Automática De Fìrias (Webmail).md' has no git logs, using current timestamp +#16 15.85 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 0] Acesso E Configura├Âș├Ășo De Webmail E Celular (Exchange).md' has no git logs, using current timestamp +#16 15.85 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 0] Como Acessar e Configurar Webmail e Celular.md' has no git logs, using current timestamp +#16 15.85 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 1] Diagn├│stico De Recebimento.md' has no git logs, using current timestamp +#16 15.85 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 1] Procedimento de Criacao e Bloqueio de Usuarios.md' has no git logs, using current timestamp +#16 15.85 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 1] Diagnostico Basico - Usuario nao recebe e-mail.md' has no git logs, using current timestamp +#16 15.86 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gerenciamento De Quarentena M├│vel (Activesync).md' has no git logs, using current timestamp +#16 15.86 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gerenciamento de Cotas e Arquivamento.md' has no git logs, using current timestamp +#16 15.86 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gerenciamento De Cotas E Arquivamento (Exchange).md' has no git logs, using current timestamp +#16 15.86 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gerenciamento de Quarentena Movel (ActiveSync).md' has no git logs, using current timestamp +#16 15.87 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gestao de Permissoes (Full Access e Send As).md' has no git logs, using current timestamp +#16 15.87 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gest├Ășo De Permiss├Áes (Full Access E Send As).md' has no git logs, using current timestamp +#16 15.87 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Solu├Âș├Ășo De Problemas De Lista De Endere├Âșos (Oab).md' has no git logs, using current timestamp +#16 15.87 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Solucao de Problemas de Lista de Enderecos (OAB).md' has no git logs, using current timestamp +#16 15.87 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Acesso ao Servidor Windows Core e PowerShell.md' has no git logs, using current timestamp +#16 15.87 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Arquitetura Tecnica e Mapeamento de Servidores.md' has no git logs, using current timestamp +#16 15.88 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Gestao de Conectores e Roteamento de E-mail.md' has no git logs, using current timestamp +#16 15.88 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Checklist de Manutencao Diaria e Semanal.md' has no git logs, using current timestamp +#16 15.88 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Auditoria Administrativa e Logs de Seguranca.md' has no git logs, using current timestamp +#16 15.88 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Disaster Recovery e Soft Restore.md' has no git logs, using current timestamp +#16 15.88 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Referencia de Operacoes via PowerShell.md' has no git logs, using current timestamp +#16 15.89 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/exchange_server_official.md' has no git logs, using current timestamp +#16 15.89 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Renovacao de Certificado SSL e Integracao com IIS.md' has no git logs, using current timestamp +#16 15.89 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_admin_senior_exchange.md' has no git logs, using current timestamp +#16 15.89 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_arquitetura_tecnica.md' has no git logs, using current timestamp +#16 15.89 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_operacoes_manutencao.md' has no git logs, using current timestamp +#16 15.89 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_service_desk_troubleshooting.md' has no git logs, using current timestamp +#16 15.89 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Relatorios Avancados e Manutencao.md' has no git logs, using current timestamp +#16 15.89 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_suporte_n1_exchange.md' has no git logs, using current timestamp +#16 15.89 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_usuario_webmail_outlook.md' has no git logs, using current timestamp +#16 15.90 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 2] Configura├Âș├Ășo de Rede e Firewall.md' has no git logs, using current timestamp +#16 15.90 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 1] Comandos Essenciais De Diagn├│stico E Navega├Âș├Ășo.md' has no git logs, using current timestamp +#16 15.90 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 2] Gest├Ășo de Usuários e Permiss├Áes.md' has no git logs, using current timestamp +#16 15.90 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 1] Comandos Essenciais de Diagn├│stico.md' has no git logs, using current timestamp +#16 15.90 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 2] Gerenciamento De Pacotes E Atualiza├Âș├Áes.md' has no git logs, using current timestamp +#16 15.91 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Análise de Logs (Journalctl).md' has no git logs, using current timestamp +#16 15.91 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 2] Gerenciamento de Pacotes e Updates.md' has no git logs, using current timestamp +#16 15.92 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Scripting e Automa├Âș├Ășo Avan├Âșada.md' has no git logs, using current timestamp +#16 15.92 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Hardening De Servidor Linux.md' has no git logs, using current timestamp +#16 15.92 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Análise De Logs (SystemdJournalctl).md' has no git logs, using current timestamp +#16 15.92 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Firewall Rules E Nat.md' has no git logs, using current timestamp +#16 15.92 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Hardening de Servidor.md' has no git logs, using current timestamp +#16 15.92 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Customiza├Âș├Ășo E Identidade Visual.md' has no git logs, using current timestamp +#16 15.93 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Gerenciamento De Usuários E Ldap.md' has no git logs, using current timestamp +#16 15.93 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Servi├Âșo De Dns (ResolverForwarder).md' has no git logs, using current timestamp +#16 15.93 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Servi├Âșo Dhcp E Reservas De Ip (Static Mapping).md' has no git logs, using current timestamp +#16 15.93 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Vpn Road Warrior (Openvpn).md' has no git logs, using current timestamp +#16 15.93 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Instala├Âș├Ășo E Configura├Âș├Ășo Inicial.md' has no git logs, using current timestamp +#16 15.93 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Interfaces, Vlans E Lagg.md' has no git logs, using current timestamp +#16 15.93 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Servi├Âșo Tftp E Provisionamento.md' has no git logs, using current timestamp +#16 15.94 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Diagn├│stico Avan├Âșado, Shell E Recovery.md' has no git logs, using current timestamp +#16 15.94 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Filtro De Conte├║do E Seguran├Âșa (Pfblockerng).md' has no git logs, using current timestamp +#16 15.95 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Planejamento De Hardware E Sizing.md' has no git logs, using current timestamp +#16 15.95 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] IdsIps Com Suricata.md' has no git logs, using current timestamp +#16 15.95 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 1] Monitoramento de Sa├║de de Discos.md' has no git logs, using current timestamp +#16 15.95 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Vpn Site.md' has no git logs, using current timestamp +#16 15.95 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Multi.md' has no git logs, using current timestamp +#16 15.95 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 2] Gest├Ășo De Users, Groups E Acls.md' has no git logs, using current timestamp +#16 15.95 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 2] Snapshots E Replica├Âș├Ășo.md' has no git logs, using current timestamp +#16 15.96 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 3] Manuten├Âș├Ășo E Performance Zfs.md' has no git logs, using current timestamp +#16 15.96 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Virtualizacao/[Nível 1] Vis├Ășo Geral E Escopo.md' has no git logs, using current timestamp +#16 15.96 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 3] Configura├Âș├Ășo de iSCSI Target.md' has no git logs, using current timestamp +#16 15.96 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 1] Opera├Âș├Áes De Energia Reiniciar E Desligar.md' has no git logs, using current timestamp +#16 15.96 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 1] Monitoramento Básico De Alertas E Recursos.md' has no git logs, using current timestamp +#16 15.96 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 3] Arquitetura ZFS e Planejamento.md' has no git logs, using current timestamp +#16 15.97 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 1] Verifica├Âș├Ășo Básica De Vm.md' has no git logs, using current timestamp +#16 15.97 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 1] Vis├Ășo Geral E Escopo.md' has no git logs, using current timestamp +#16 15.97 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 2] Gest├Ășo De Recursos Computa├Âș├Ășo E Migra├Âș├Ășo.md' has no git logs, using current timestamp +#16 15.97 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 2] Networking E Storage Operacional.md' has no git logs, using current timestamp +#16 15.97 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 2] Troubleshooting Intermediário.md' has no git logs, using current timestamp +#16 15.98 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 3] Cli E Troubleshooting Avan├Âșado (Nível 3).md' has no git logs, using current timestamp +#16 15.98 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 2] Manuten├Âș├Ășo E Lifecycle (Ciclo De Vida).md' has no git logs, using current timestamp +#16 15.98 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 3] Disaster Recovery E Arquitetura.md' has no git logs, using current timestamp +#16 15.98 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 3] Networking Avan├Âșado E Conceitos De Nsx.md' has no git logs, using current timestamp +#16 15.99 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 3] Storage Deep Dive.md' has no git logs, using current timestamp +#16 15.99 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 1] Cria├Âș├Ășo e Gest├Ășo do Ciclo de Vida de Usuários (AD).md' has no git logs, using current timestamp +#16 15.99 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 2] Padr├Áes De Senha E Configura├Âș├Ășo Inicial (Post.md' has no git logs, using current timestamp +#16 15.99 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 2] Gest├Ășo Avan├Âșada de DNS e DHCP.md' has no git logs, using current timestamp +#16 15.99 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 2] Padr├Áes de Senha e Configura├Âș├Ășo Inicial (Post-Install).md' has no git logs, using current timestamp +#16 15.99 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Automa├Âș├Ășo e Relat├│rios com PowerShell.md' has no git logs, using current timestamp +#16 16.00 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Diagn├│stico de Replica├Âș├Ășo (DCDIAG).md' has no git logs, using current timestamp +#16 16.00 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Disaster Recovery e Continuidade de Neg├│cios (AD).md' has no git logs, using current timestamp +#16 16.00 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Gest├Ășo Centralizada via GPO.md' has no git logs, using current timestamp +#16 16.00 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 1] Ciclo De Vida Do Ticket E Triagem.md' has no git logs, using current timestamp +#16 16.00 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 2] Canais De Entrada (EmailChatTelegram).md' has no git logs, using current timestamp +#16 16.00 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 2] Automa├Âș├Áes E Triggers.md' has no git logs, using current timestamp +#16 16.01 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 2] Gest├Ășo De Grupos E Papìis (Roles).md' has no git logs, using current timestamp +#16 16.01 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 2] Instala├Âș├Ășo E Deploy Zammad.md' has no git logs, using current timestamp +#16 16.01 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Gest├Ășo Centralizada Via Gpo (Group Policy).md' has no git logs, using current timestamp +#16 16.01 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 2] Gest├Ășo De Slas E Escalonamentos.md' has no git logs, using current timestamp +#16 16.01 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 3] Api E Integra├Âș├Áes.md' has no git logs, using current timestamp +#16 16.01 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 3] Manuten├Âș├Ășo, Backup E Restore.md' has no git logs, using current timestamp +#16 16.02 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 3] Planejamento De Infraestrutura E Sizing.md' has no git logs, using current timestamp +#16 16.05 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/index.md' has no git logs, using current timestamp +#16 16.05 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 2] Restaura├Âș├Ășo De Arquivos Guest (WindowsLinux).md' has no git logs, using current timestamp +#16 16.05 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 1] Verifica├Âș├Ășo Diária De Jobs De Vm.md' has no git logs, using current timestamp +#16 16.05 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 2] Instant Vm Recovery (Restaura├Âș├Ășo Rápida).md' has no git logs, using current timestamp +#16 16.05 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 3] Cria├Âș├Ășo De Rotinas De Teste De Restore (Surebackup).md' has no git logs, using current timestamp +#16 16.05 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 3] Configura├Âș├Ășo De Reposit├│rios Imutáveis (Hardened Linux).md' has no git logs, using current timestamp +#16 16.06 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 1] Backup E Restore Manual (Dump).md' has no git logs, using current timestamp +#16 16.06 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 1] Diagn├│stico de Conectividade e Status.md' has no git logs, using current timestamp +#16 16.06 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 1] Diagn├│stico De Conectividade De Bancos De Dados.md' has no git logs, using current timestamp +#16 16.06 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Instala├Âș├Ășo e Configura├Âș├Ășo Base.md' has no git logs, using current timestamp +#16 16.06 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Gest├Ășo de Usuários e Permiss├Áes.md' has no git logs, using current timestamp +#16 16.06 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Instala├Âș├Ășo E Configura├Âș├Ășo Base De Bancos De Dados.md' has no git logs, using current timestamp +#16 16.06 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Gest├Ășo De Usuários E Permiss├Áes De Banco.md' has no git logs, using current timestamp +#16 16.07 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 1] Procedimento de Backup e Restore Manual.md' has no git logs, using current timestamp +#16 16.07 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Manuten├Âș├Ășo Preventiva E Logs De Banco.md' has no git logs, using current timestamp +#16 16.07 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 3] Arquitetura de Persistência e Troubleshooting Avan├Âșado.md' has no git logs, using current timestamp +#16 16.07 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Volumes_e_Persistencia_Docker.md' has no git logs, using current timestamp +#16 16.07 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Manuten├Âș├Ășo Preventiva e Logs.md' has no git logs, using current timestamp +#16 16.08 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Redes_e_Firewall_Docker.md' has no git logs, using current timestamp +#16 16.08 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 3] Tuning E Performance De Bancos De Dados.md' has no git logs, using current timestamp +#16 16.08 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 3] Tuning de Performance e Otimiza├Âș├Ășo.md' has no git logs, using current timestamp +#16 16.08 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 0] Docker Para Desenvolvedores E Ferramentas Portáteis.md' has no git logs, using current timestamp +#16 16.09 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 2] Healthchecks E Scripts Automatizados No Docker.md' has no git logs, using current timestamp +#16 16.09 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 1] Deploy E Acesso Ao Portainer Ce.md' has no git logs, using current timestamp +#16 16.09 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 1] Gest├Ășo De Stacks No Portainer.md' has no git logs, using current timestamp +#16 16.09 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 1] Instala├Âș├Ășo E Configura├Âș├Ășo Do Docker E Compose (Linux).md' has no git logs, using current timestamp +#16 16.09 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 2] Redes E Firewall No Docker.md' has no git logs, using current timestamp +#16 16.10 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 3] Docker Swarm Inicializa├Âș├Ășo E Gerenciamento.md' has no git logs, using current timestamp +#16 16.10 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 2] Volumes E Persistência De Dados No Docker.md' has no git logs, using current timestamp +#16 16.10 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_exchange_server_official.md' has no git logs, using current timestamp +#16 16.10 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 3] Kubernetes Vis├Ășo Geral E Ferramentas Básicas.md' has no git logs, using current timestamp +#16 16.10 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_service_desk_troubleshooting.md' has no git logs, using current timestamp +#16 16.10 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_operacoes_manutencao.md' has no git logs, using current timestamp +#16 16.10 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_admin_senior_exchange.md' has no git logs, using current timestamp +#16 16.11 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_suporte_n1_exchange.md' has no git logs, using current timestamp +#16 16.11 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_arquitetura_tecnica.md' has no git logs, using current timestamp +#16 16.11 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_usuario_webmail_outlook.md' has no git logs, using current timestamp +#16 16.11 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 0] Como Configurar Resposta Automatica de Ferias.md' has no git logs, using current timestamp +#16 16.11 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 1] Cria├Âș├Ășo E Bloqueio De Usuários.md' has no git logs, using current timestamp +#16 16.12 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 1] Diagnostico Basico - Usuario nao recebe e-mail.md' has no git logs, using current timestamp +#16 16.12 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 0] Configura├Âș├Ășo De Resposta Automática De Fìrias (Webmail).md' has no git logs, using current timestamp +#16 16.12 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 0] Acesso E Configura├Âș├Ășo De Webmail E Celular (Exchange).md' has no git logs, using current timestamp +#16 16.12 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 1] Diagn├│stico De Recebimento.md' has no git logs, using current timestamp +#16 16.12 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 0] Como Acessar e Configurar Webmail e Celular.md' has no git logs, using current timestamp +#16 16.13 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 1] Procedimento de Criacao e Bloqueio de Usuarios.md' has no git logs, using current timestamp +#16 16.13 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gerenciamento De Quarentena M├│vel (Activesync).md' has no git logs, using current timestamp +#16 16.13 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gerenciamento De Cotas E Arquivamento (Exchange).md' has no git logs, using current timestamp +#16 16.13 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Solucao de Problemas de Lista de Enderecos (OAB).md' has no git logs, using current timestamp +#16 16.13 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gerenciamento de Cotas e Arquivamento.md' has no git logs, using current timestamp +#16 16.13 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gestao de Permissoes (Full Access e Send As).md' has no git logs, using current timestamp +#16 16.13 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gerenciamento de Quarentena Movel (ActiveSync).md' has no git logs, using current timestamp +#16 16.14 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gest├Ășo De Permiss├Áes (Full Access E Send As).md' has no git logs, using current timestamp +#16 16.14 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Solu├Âș├Ășo De Problemas De Lista De Endere├Âșos (Oab).md' has no git logs, using current timestamp +#16 16.14 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Arquitetura Tecnica e Mapeamento de Servidores.md' has no git logs, using current timestamp +#16 16.15 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Acesso ao Servidor Windows Core e PowerShell.md' has no git logs, using current timestamp +#16 16.15 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Disaster Recovery e Soft Restore.md' has no git logs, using current timestamp +#16 16.15 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Checklist de Manutencao Diaria e Semanal.md' has no git logs, using current timestamp +#16 16.15 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Referencia de Operacoes via PowerShell.md' has no git logs, using current timestamp +#16 16.15 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Gestao de Conectores e Roteamento de E-mail.md' has no git logs, using current timestamp +#16 16.15 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/exchange_server_official.md' has no git logs, using current timestamp +#16 16.15 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_admin_senior_exchange.md' has no git logs, using current timestamp +#16 16.16 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_arquitetura_tecnica.md' has no git logs, using current timestamp +#16 16.16 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Auditoria Administrativa e Logs de Seguranca.md' has no git logs, using current timestamp +#16 16.16 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_service_desk_troubleshooting.md' has no git logs, using current timestamp +#16 16.16 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_operacoes_manutencao.md' has no git logs, using current timestamp +#16 16.16 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Renovacao de Certificado SSL e Integracao com IIS.md' has no git logs, using current timestamp +#16 16.16 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Relatorios Avancados e Manutencao.md' has no git logs, using current timestamp +#16 16.16 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_suporte_n1_exchange.md' has no git logs, using current timestamp +#16 16.17 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_usuario_webmail_outlook.md' has no git logs, using current timestamp +#16 16.17 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 1] Comandos Essenciais De Diagn├│stico E Navega├Âș├Ășo.md' has no git logs, using current timestamp +#16 16.17 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 1] Comandos Essenciais de Diagn├│stico.md' has no git logs, using current timestamp +#16 16.18 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 2] Gest├Ășo de Usuários e Permiss├Áes.md' has no git logs, using current timestamp +#16 16.18 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 2] Gerenciamento de Pacotes e Updates.md' has no git logs, using current timestamp +#16 16.18 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 2] Gerenciamento De Pacotes E Atualiza├Âș├Áes.md' has no git logs, using current timestamp +#16 16.18 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 2] Configura├Âș├Ășo de Rede e Firewall.md' has no git logs, using current timestamp +#16 16.18 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Análise de Logs (Journalctl).md' has no git logs, using current timestamp +#16 16.18 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Análise De Logs (SystemdJournalctl).md' has no git logs, using current timestamp +#16 16.19 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Hardening De Servidor Linux.md' has no git logs, using current timestamp +#16 16.19 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Customiza├Âș├Ășo E Identidade Visual.md' has no git logs, using current timestamp +#16 16.19 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Gerenciamento De Usuários E Ldap.md' has no git logs, using current timestamp +#16 16.19 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Firewall Rules E Nat.md' has no git logs, using current timestamp +#16 16.20 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Scripting e Automa├Âș├Ășo Avan├Âșada.md' has no git logs, using current timestamp +#16 16.20 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Hardening de Servidor.md' has no git logs, using current timestamp +#16 16.20 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Interfaces, Vlans E Lagg.md' has no git logs, using current timestamp +#16 16.20 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Instala├Âș├Ășo E Configura├Âș├Ășo Inicial.md' has no git logs, using current timestamp +#16 16.21 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Servi├Âșo Tftp E Provisionamento.md' has no git logs, using current timestamp +#16 16.21 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Vpn Road Warrior (Openvpn).md' has no git logs, using current timestamp +#16 16.21 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Servi├Âșo De Dns (ResolverForwarder).md' has no git logs, using current timestamp +#16 16.21 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Servi├Âșo Dhcp E Reservas De Ip (Static Mapping).md' has no git logs, using current timestamp +#16 16.22 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Filtro De Conte├║do E Seguran├Âșa (Pfblockerng).md' has no git logs, using current timestamp +#16 16.22 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] IdsIps Com Suricata.md' has no git logs, using current timestamp +#16 16.22 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Diagn├│stico Avan├Âșado, Shell E Recovery.md' has no git logs, using current timestamp +#16 16.22 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Multi.md' has no git logs, using current timestamp +#16 16.22 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Vpn Site.md' has no git logs, using current timestamp +#16 16.22 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 1] Monitoramento de Sa├║de de Discos.md' has no git logs, using current timestamp +#16 16.22 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 2] Gest├Ășo De Users, Groups E Acls.md' has no git logs, using current timestamp +#16 16.23 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Planejamento De Hardware E Sizing.md' has no git logs, using current timestamp +#16 16.23 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 3] Configura├Âș├Ășo de iSCSI Target.md' has no git logs, using current timestamp +#16 16.24 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Virtualizacao/[Nível 1] Vis├Ășo Geral E Escopo.md' has no git logs, using current timestamp +#16 16.24 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 3] Manuten├Âș├Ășo E Performance Zfs.md' has no git logs, using current timestamp +#16 16.24 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 1] Monitoramento Básico De Alertas E Recursos.md' has no git logs, using current timestamp +#16 16.24 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 3] Arquitetura ZFS e Planejamento.md' has no git logs, using current timestamp +#16 16.24 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 1] Opera├Âș├Áes De Energia Reiniciar E Desligar.md' has no git logs, using current timestamp +#16 16.24 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 2] Snapshots E Replica├Âș├Ășo.md' has no git logs, using current timestamp +#16 16.24 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 1] Verifica├Âș├Ășo Básica De Vm.md' has no git logs, using current timestamp +#16 16.25 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 1] Vis├Ășo Geral E Escopo.md' has no git logs, using current timestamp +#16 16.25 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 2] Networking E Storage Operacional.md' has no git logs, using current timestamp +#16 16.25 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 2] Manuten├Âș├Ășo E Lifecycle (Ciclo De Vida).md' has no git logs, using current timestamp +#16 16.25 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 3] Networking Avan├Âșado E Conceitos De Nsx.md' has no git logs, using current timestamp +#16 16.26 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 2] Gest├Ășo De Recursos Computa├Âș├Ășo E Migra├Âș├Ășo.md' has no git logs, using current timestamp +#16 16.26 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 2] Troubleshooting Intermediário.md' has no git logs, using current timestamp +#16 16.26 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 3] Cli E Troubleshooting Avan├Âșado (Nível 3).md' has no git logs, using current timestamp +#16 16.26 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 3] Disaster Recovery E Arquitetura.md' has no git logs, using current timestamp +#16 16.26 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 1] Cria├Âș├Ășo e Gest├Ășo do Ciclo de Vida de Usuários (AD).md' has no git logs, using current timestamp +#16 16.26 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 3] Storage Deep Dive.md' has no git logs, using current timestamp +#16 16.27 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 2] Gest├Ășo Avan├Âșada de DNS e DHCP.md' has no git logs, using current timestamp +#16 16.27 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 2] Padr├Áes De Senha E Configura├Âș├Ășo Inicial (Post.md' has no git logs, using current timestamp +#16 16.27 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Automa├Âș├Ășo e Relat├│rios com PowerShell.md' has no git logs, using current timestamp +#16 16.27 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Diagn├│stico de Replica├Âș├Ășo (DCDIAG).md' has no git logs, using current timestamp +#16 16.27 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Disaster Recovery e Continuidade de Neg├│cios (AD).md' has no git logs, using current timestamp +#16 16.28 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Gest├Ășo Centralizada via GPO.md' has no git logs, using current timestamp +#16 16.28 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 2] Padr├Áes de Senha e Configura├Âș├Ășo Inicial (Post-Install).md' has no git logs, using current timestamp +#16 16.28 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Gest├Ășo Centralizada Via Gpo (Group Policy).md' has no git logs, using current timestamp +#16 16.28 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 1] Ciclo De Vida Do Ticket E Triagem.md' has no git logs, using current timestamp +#16 16.28 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 2] Automa├Âș├Áes E Triggers.md' has no git logs, using current timestamp +#16 16.29 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 2] Canais De Entrada (EmailChatTelegram).md' has no git logs, using current timestamp +#16 16.29 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 2] Gest├Ășo De Grupos E Papìis (Roles).md' has no git logs, using current timestamp +#16 16.29 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 2] Instala├Âș├Ășo E Deploy Zammad.md' has no git logs, using current timestamp +#16 16.29 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 3] Api E Integra├Âș├Áes.md' has no git logs, using current timestamp +#16 16.29 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 2] Gest├Ășo De Slas E Escalonamentos.md' has no git logs, using current timestamp +#16 16.30 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 3] Planejamento De Infraestrutura E Sizing.md' has no git logs, using current timestamp +#16 16.30 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 3] Manuten├Âș├Ășo, Backup E Restore.md' has no git logs, using current timestamp +#16 16.34 WARNING:root:First revision timestamp is older than last revision timestamp for page index.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Agendamento/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Aplicativos/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Automacao/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Backup/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Bancos De Dados/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Certificados/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Colaboracao/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Conteineres/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Dev/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Diagnostico Rede/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Editores/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Endpoint/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Exchange/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Ferramentas/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Ftp/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Hardware/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Linux/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Microsoft/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Navegadores/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Powerbi/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Processos/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Rede E Seguranca/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Seguranca Email/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Storage/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Terminal/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Unifi/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Virtualizacao/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Vmware/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Web Servers/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Webmin/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Windows/', it was left as is. +#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Zammad/', it was left as is. +#16 16.34 WARNING:root:First revision timestamp is older than last revision timestamp for page Backup/[Nível 1] Verifica├Âș├Ășo Diária De Jobs De Vm.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.35 WARNING:root:First revision timestamp is older than last revision timestamp for page Backup/[Nível 2] Instant Vm Recovery (Restaura├Âș├Ășo Rápida).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.35 WARNING:root:First revision timestamp is older than last revision timestamp for page Backup/[Nível 2] Restaura├Âș├Ășo De Arquivos Guest (WindowsLinux).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.36 WARNING:root:First revision timestamp is older than last revision timestamp for page Backup/[Nível 3] Configura├Âș├Ășo De Reposit├│rios Imutáveis (Hardened Linux).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.37 WARNING:root:First revision timestamp is older than last revision timestamp for page Backup/[Nível 3] Cria├Âș├Ășo De Rotinas De Teste De Restore (Surebackup).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.37 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 1] Backup E Restore Manual (Dump).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.38 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 1] Diagn├│stico De Conectividade De Bancos De Dados.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.38 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 1] Diagn├│stico de Conectividade e Status.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.38 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 1] Procedimento de Backup e Restore Manual.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.39 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 2] Gest├Ășo De Usuários E Permiss├Áes De Banco.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.39 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 2] Gest├Ășo de Usuários e Permiss├Áes.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.40 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 2] Instala├Âș├Ășo E Configura├Âș├Ășo Base De Bancos De Dados.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.40 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 2] Instala├Âș├Ășo e Configura├Âș├Ășo Base.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.41 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 2] Manuten├Âș├Ășo Preventiva E Logs De Banco.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.41 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 2] Manuten├Âș├Ășo Preventiva e Logs.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.41 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 3] Arquitetura de Persistência e Troubleshooting Avan├Âșado.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.42 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 3] Tuning E Performance De Bancos De Dados.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.42 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 3] Tuning de Performance e Otimiza├Âș├Ășo.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.43 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/Redes_e_Firewall_Docker.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.43 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/Volumes_e_Persistencia_Docker.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.44 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/[Nível 0] Docker Para Desenvolvedores E Ferramentas Portáteis.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.44 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/[Nível 1] Deploy E Acesso Ao Portainer Ce.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.45 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/[Nível 1] Gest├Ășo De Stacks No Portainer.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.45 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/[Nível 1] Instala├Âș├Ășo E Configura├Âș├Ășo Do Docker E Compose (Linux).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.46 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/[Nível 2] Healthchecks E Scripts Automatizados No Docker.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.46 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/[Nível 2] Redes E Firewall No Docker.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.47 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/[Nível 2] Volumes E Persistência De Dados No Docker.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.47 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/[Nível 3] Docker Swarm Inicializa├Âș├Ășo E Gerenciamento.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.47 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/[Nível 3] Kubernetes Vis├Ășo Geral E Ferramentas Básicas.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.48 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Z_legado_exchange_server_official.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.48 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Z_legado_manual_admin_senior_exchange.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.49 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Z_legado_manual_arquitetura_tecnica.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.49 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Z_legado_manual_operacoes_manutencao.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.50 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Z_legado_manual_service_desk_troubleshooting.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.50 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Z_legado_manual_suporte_n1_exchange.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.51 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Z_legado_manual_usuario_webmail_outlook.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.51 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 0] Acesso E Configura├Âș├Ășo De Webmail E Celular (Exchange).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.51 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 0] Como Acessar e Configurar Webmail e Celular.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.52 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 0] Como Configurar Resposta Automatica de Ferias.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.53 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 0] Configura├Âș├Ășo De Resposta Automática De Fìrias (Webmail).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.53 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 1] Cria├Âș├Ășo E Bloqueio De Usuários.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.53 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 1] Diagnostico Basico - Usuario nao recebe e-mail.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.54 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 1] Diagn├│stico De Recebimento.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.54 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 1] Procedimento de Criacao e Bloqueio de Usuarios.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.55 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 2] Gerenciamento De Cotas E Arquivamento (Exchange).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.56 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 2] Gerenciamento De Quarentena M├│vel (Activesync).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.56 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 2] Gerenciamento de Cotas e Arquivamento.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.57 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 2] Gerenciamento de Quarentena Movel (ActiveSync).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.57 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 2] Gestao de Permissoes (Full Access e Send As).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.58 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 2] Gest├Ășo De Permiss├Áes (Full Access E Send As).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.58 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 2] Solucao de Problemas de Lista de Enderecos (OAB).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.59 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 2] Solu├Âș├Ășo De Problemas De Lista De Endere├Âșos (Oab).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.60 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 3] Acesso ao Servidor Windows Core e PowerShell.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.60 WARNING - Doc file 'Exchange/[Nível 3] Acesso ao Servidor Windows Core e PowerShell.md' contains a link 'assets/sconfig_menu.png', but the target 'Exchange/assets/sconfig_menu.png' is not found among documentation files. +#16 16.60 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 3] Arquitetura Tecnica e Mapeamento de Servidores.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.61 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 3] Auditoria Administrativa e Logs de Seguranca.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.61 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 3] Checklist de Manutencao Diaria e Semanal.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.61 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 3] Disaster Recovery e Soft Restore.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.62 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 3] Gestao de Conectores e Roteamento de E-mail.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.62 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 3] Referencia de Operacoes via PowerShell.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.63 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 3] Relatorios Avancados e Manutencao.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.63 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 3] Renovacao de Certificado SSL e Integracao com IIS.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.64 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/exchange_server_official.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.64 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/manual_admin_senior_exchange.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.64 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/manual_arquitetura_tecnica.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.65 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/manual_operacoes_manutencao.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.65 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/manual_service_desk_troubleshooting.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.66 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/manual_suporte_n1_exchange.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.66 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/manual_usuario_webmail_outlook.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.67 WARNING:root:First revision timestamp is older than last revision timestamp for page Linux/[Nível 1] Comandos Essenciais De Diagn├│stico E Navega├Âș├Ășo.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.68 WARNING:root:First revision timestamp is older than last revision timestamp for page Linux/[Nível 1] Comandos Essenciais de Diagn├│stico.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.68 WARNING:root:First revision timestamp is older than last revision timestamp for page Linux/[Nível 2] Configura├Âș├Ășo de Rede e Firewall.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.69 WARNING:root:First revision timestamp is older than last revision timestamp for page Linux/[Nível 2] Gerenciamento De Pacotes E Atualiza├Âș├Áes.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.69 WARNING:root:First revision timestamp is older than last revision timestamp for page Linux/[Nível 2] Gerenciamento de Pacotes e Updates.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.70 WARNING:root:First revision timestamp is older than last revision timestamp for page Linux/[Nível 2] Gest├Ășo de Usuários e Permiss├Áes.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.71 WARNING:root:First revision timestamp is older than last revision timestamp for page Linux/[Nível 3] Análise De Logs (SystemdJournalctl).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.71 WARNING:root:First revision timestamp is older than last revision timestamp for page Linux/[Nível 3] Análise de Logs (Journalctl).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.72 WARNING:root:First revision timestamp is older than last revision timestamp for page Linux/[Nível 3] Hardening De Servidor Linux.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.72 WARNING:root:First revision timestamp is older than last revision timestamp for page Linux/[Nível 3] Hardening de Servidor.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.73 WARNING:root:First revision timestamp is older than last revision timestamp for page Linux/[Nível 3] Scripting e Automa├Âș├Ășo Avan├Âșada.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.73 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 2] Customiza├Âș├Ășo E Identidade Visual.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.74 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 2] Firewall Rules E Nat.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.74 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 2] Gerenciamento De Usuários E Ldap.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.75 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 2] Instala├Âș├Ășo E Configura├Âș├Ășo Inicial.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.75 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 2] Interfaces, Vlans E Lagg.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.76 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 2] Servi├Âșo De Dns (ResolverForwarder).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.77 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 2] Servi├Âșo Dhcp E Reservas De Ip (Static Mapping).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.77 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 2] Servi├Âșo Tftp E Provisionamento.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.78 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 2] Vpn Road Warrior (Openvpn).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.79 WARNING - Doc file 'Rede E Seguranca/[Nível 2] Vpn Road Warrior (Openvpn).md' contains a link 'assets/placeholder.png', but the target 'Rede E Seguranca/assets/placeholder.png' is not found among documentation files. +#16 16.79 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 3] Diagn├│stico Avan├Âșado, Shell E Recovery.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.79 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 3] Filtro De Conte├║do E Seguran├Âșa (Pfblockerng).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.80 WARNING - Doc file 'Rede E Seguranca/[Nível 3] Filtro De Conte├║do E Seguran├Âșa (Pfblockerng).md' contains a link 'assets/placeholder.png', but the target 'Rede E Seguranca/assets/placeholder.png' is not found among documentation files. +#16 16.80 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 3] IdsIps Com Suricata.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.81 WARNING - Doc file 'Rede E Seguranca/[Nível 3] IdsIps Com Suricata.md' contains a link 'assets/placeholder.png', but the target 'Rede E Seguranca/assets/placeholder.png' is not found among documentation files. +#16 16.81 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 3] Multi.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.82 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 3] Planejamento De Hardware E Sizing.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.82 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 3] Vpn Site.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.83 WARNING:root:First revision timestamp is older than last revision timestamp for page Storage/[Nível 1] Monitoramento de Sa├║de de Discos.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.84 WARNING - Doc file 'Storage/[Nível 1] Monitoramento de Sa├║de de Discos.md' contains a link 'assets/dashboard_alert.png', but the target 'Storage/assets/dashboard_alert.png' is not found among documentation files. +#16 16.84 WARNING:root:First revision timestamp is older than last revision timestamp for page Storage/[Nível 2] Gest├Ășo De Users, Groups E Acls.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration. +#16 16.84 WARNING - Doc file 'Storage/[Nível 2] Gest├Ășo De Users, Groups E Acls.md' contains a link 'assets/dataset_acl.png', but the target 'Storage/assets/dataset_acl.png' is not found among documentation files. +#16 16.85 WARNING - Doc file 'Storage/[Nível 2] Snapshots E Replica├Âș├Ășo.md' contains a link 'assets/replication_task.png', but the target 'Storage/assets/replication_task.png' is not found among documentation files. +#16 16.86 WARNING - Doc file 'Storage/[Nível 3] Arquitetura ZFS e Planejamento.md' contains a link 'assets/zfs_architecture.png', but the target 'Storage/assets/zfs_architecture.png' is not found among documentation files. +#16 16.87 WARNING - Doc file 'Virtualizacao/[Nível 1] Vis├Ășo Geral E Escopo.md' contains a link 'assets/proxmox_login.png', but the target 'Virtualizacao/assets/proxmox_login.png' is not found among documentation files. +#16 16.89 WARNING - Doc file 'Vmware/[Nível 1] Verifica├Âș├Ășo Básica De Vm.md' contains a link 'assets/vcenter_summary.png', but the target 'Vmware/assets/vcenter_summary.png' is not found among documentation files. +#16 16.89 WARNING - Doc file 'Vmware/[Nível 1] Vis├Ășo Geral E Escopo.md' contains a link 'assets/vsphere_login.png', but the target 'Vmware/assets/vsphere_login.png' is not found among documentation files. +#16 16.92 WARNING - Doc file 'Windows/[Nível 1] Cria├Âș├Ășo e Gest├Ășo do Ciclo de Vida de Usuários (AD).md' contains a link 'assets/ad_new_user.png', but the target 'Windows/assets/ad_new_user.png' is not found among documentation files. +#16 16.96 WARNING - Doc file 'Zammad/[Nível 1] Ciclo De Vida Do Ticket E Triagem.md' contains a link 'assets/zammad_ticket_creation.png', but the target 'Zammad/assets/zammad_ticket_creation.png' is not found among documentation files. +#16 16.96 WARNING - Doc file 'Zammad/[Nível 1] Ciclo De Vida Do Ticket E Triagem.md' contains a link 'assets/zammad_ticket_merge.png', but the target 'Zammad/assets/zammad_ticket_merge.png' is not found among documentation files. +#16 16.97 WARNING - Doc file 'Zammad/[Nível 2] Automa├Âș├Áes E Triggers.md' contains a link 'assets/zammad_trigger_setup.png', but the target 'Zammad/assets/zammad_trigger_setup.png' is not found among documentation files. +#16 16.97 WARNING - Doc file 'Zammad/[Nível 2] Canais De Entrada (EmailChatTelegram).md' contains a link 'assets/zammad_telegram_integr.png', but the target 'Zammad/assets/zammad_telegram_integr.png' is not found among documentation files. +#16 16.98 WARNING - Doc file 'Zammad/[Nível 2] Gest├Ășo De Grupos E Papìis (Roles).md' contains a link 'assets/zammad_create_group.png', but the target 'Zammad/assets/zammad_create_group.png' is not found among documentation files. +#16 16.98 WARNING - Doc file 'Zammad/[Nível 2] Gest├Ășo De Slas E Escalonamentos.md' contains a link 'assets/zammad_calendar_setup.png', but the target 'Zammad/assets/zammad_calendar_setup.png' is not found among documentation files. +#16 16.99 WARNING - Doc file 'Zammad/[Nível 2] Instala├Âș├Ășo E Deploy Zammad.md' contains a link 'assets/zammad_install_docker.png', but the target 'Zammad/assets/zammad_install_docker.png' is not found among documentation files. +#16 18.26 INFO - Documentation built in 2.63 seconds +#16 18.31 Copying manuals to build directory... +#16 18.31 Processing documentacao storage -> Storage +#16 18.31 Processing documentacao dev -> Dev +#16 18.31 Processing documentacao colaboracao -> Colaboracao +#16 18.31 Processing documentacao agendamento -> Agendamento +#16 18.31 Processing documentacao zammad -> Zammad +#16 18.31 Processing documentacao linux -> Linux +#16 18.31 Processing documentacao windows -> Windows +#16 18.31 Processing documentacao certificados -> Certificados +#16 18.31 Processing documentacao rede e seguranca -> Rede E Seguranca +#16 18.31 Processing documentacao terminal -> Terminal +#16 18.31 Processing documentacao bancos de dados -> Bancos De Dados +#16 18.31 Processing documentacao editores -> Editores +#16 18.31 Processing documentacao processos -> Processos +#16 18.31 Processing documentacao virtualizacao -> Virtualizacao +#16 18.31 Processing documentacao navegadores -> Navegadores +#16 18.31 Processing documentacao microsoft -> Microsoft +#16 18.31 Processing documentacao seguranca email -> Seguranca Email +#16 18.31 Processing documentacao vmware -> Vmware +#16 18.31 Processing documentacao hardware -> Hardware +#16 18.31 Processing documentacao ferramentas -> Ferramentas +#16 18.31 Processing documentacao automacao -> Automacao +#16 18.31 Processing documentacao web servers -> Web Servers +#16 18.31 Processing documentacao exchange -> Exchange +#16 18.31 Processing documentacao backup -> Backup +#16 18.31 Processing documentacao powerbi -> Powerbi +#16 18.31 Processing documentacao conteineres -> Conteineres +#16 18.31 Processing documentacao ftp -> Ftp +#16 18.31 Processing documentacao unifi -> Unifi +#16 18.31 Processing documentacao webmin -> Webmin +#16 18.31 Processing documentacao diagnostico rede -> Diagnostico Rede +#16 18.31 Processing documentacao aplicativos -> Aplicativos +#16 18.31 Processing documentacao endpoint -> Endpoint +#16 18.31 Copying root assets from /app/assets to /app/_site_src/docs/assets +#16 18.31 Creating index.md... +#16 18.31 Generating PDFs... +#16 18.31 Building MkDocs site... +#16 18.31 Build Complete! Site is in _site_src/site +#16 DONE 18.4s + +#8 [stage-1 1/2] FROM docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2 +#8 CACHED + +#17 [stage-1 2/2] COPY --from=builder /app/_site_src/site /usr/share/nginx/html +#17 DONE 0.2s + +#18 exporting to image +#18 exporting layers +#18 exporting layers 1.4s done +#18 exporting manifest sha256:81833b7e061cffc4851a7635b32dff1e19c79d2dd8e505dff7e29ef50ffa723b 0.0s done +#18 exporting config sha256:a4429395af89de9f340d15c9f7b1798eb2d321418bed97cc7ea1a618ba3ac310 0.0s done +#18 exporting attestation manifest sha256:2794d254f38a161d723698b05482693eba9c59ccb2571c91e7fd1ed328c20b4c 0.0s done +#18 exporting manifest list sha256:be50523135cea6787f54d472b5b39e5d4a1b0bbd0a741d5f93575ff9b622325c 0.0s done +#18 naming to docker.io/library/docs-itguys:latest +#18 naming to docker.io/library/docs-itguys:latest done +#18 unpacking to docker.io/library/docs-itguys:latest +#18 unpacking to docker.io/library/docs-itguys:latest 0.3s done +#18 DONE 1.9s + + 1 warning found (use docker --debug to expand): + - FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line 1) + +View build details: docker-desktop://dashboard/build/desktop-linux/desktop-linux/fh3mhmt2d5r9rtjsf65qm2bgp diff --git a/mkdocs.yml b/mkdocs.yml index dfa367b..e44eba4 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -18,17 +18,17 @@ theme: palette: - media: "(prefers-color-scheme: light)" scheme: default - primary: blue - accent: cyan + primary: indigo + accent: teal toggle: - icon: material/brightness-7 + icon: material/weather-sunny name: Switch to dark mode - media: "(prefers-color-scheme: dark)" scheme: slate - primary: blue - accent: cyan + primary: indigo + accent: teal toggle: - icon: material/brightness-4 + icon: material/weather-night name: Switch to light mode hooks: @@ -41,7 +41,7 @@ plugins: - git-revision-date-localized: type: datetime fallback_to_build_date: true - enable_creation_date: true + enable_creation_date: false extra_css: - stylesheets/extra.css