From 7355ad82ce5e0ccf68a5d1f0d0a8611ec60644d0 Mon Sep 17 00:00:00 2001 From: Onei de Barros Junior Date: Wed, 11 Mar 2026 18:02:58 +0000 Subject: [PATCH] =?UTF-8?q?Adicionar=20Arquitetura=20PKI=20do=20Laborat?= =?UTF-8?q?=C3=B3rio?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Arquitetura-PKI-do-Laborat%C3%B3rio.md | 27 ++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Arquitetura-PKI-do-Laborat%C3%B3rio.md diff --git a/Arquitetura-PKI-do-Laborat%C3%B3rio.md b/Arquitetura-PKI-do-Laborat%C3%B3rio.md new file mode 100644 index 0000000..f98164a --- /dev/null +++ b/Arquitetura-PKI-do-Laborat%C3%B3rio.md @@ -0,0 +1,27 @@ +## Arquitetura PKI do Laboratório + +```mermaid +flowchart TD + +CA[MWS Root CA
Autoridade Certificadora] + +CLIENT[Desktop Windows 11
CA Confiável] + +PROXY[www1.localmws
Reverse Proxy HTTPS] + +OMV[openmediavault.localmws
HTTPS] + +NAS[nas.localmws
HTTPS] + +GIT[git.localmws
HTTP Interno] + +CA --> OMV +CA --> NAS +CA --> PROXY + +CLIENT -->|HTTPS| PROXY + +PROXY -->|HTTPS Backend| NAS +PROXY -->|HTTP Interno| GIT +PROXY -->|HTTPS| OMV +``` \ No newline at end of file