Skip to content

Commit 36bc7fb

Browse files
committed
add architecture diagram
1 parent e6835de commit 36bc7fb

File tree

7 files changed

+270
-0
lines changed

7 files changed

+270
-0
lines changed
151 KB
Loading

src/content/post/2025/05-29-traefik-load-balancer/_resources/.gitkeep

Whitespace-only changes.

src/content/post/2025/05-29-traefik-load-balancer/_resources/traefik-load-balancer-architecture.drawio

Lines changed: 259 additions & 0 deletions
Large diffs are not rendered by default.

src/content/post/2025/05-29-traefik-load-balancer/_resources/traefik-load-balancer-architecture.drawio.svg

Lines changed: 4 additions & 0 deletions
Loading
151 KB
Loading

src/content/post/2025/05-29-traefik-load-balancer/index.mdx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ toc: true
1414
draft: true
1515
---
1616

17+
import { Image } from 'astro:assets';
18+
19+
import { IMAGE_SIZES } from '../../../../constants/image';
20+
21+
import TraefikLoadBalancerArchitectureImage from '../../../../content/post/2025/05-29-traefik-load-balancer/_images/traefik-load-balancer-architecture.png';
1722

1823
## Introduction
1924

@@ -62,6 +67,8 @@ For each home server we need 2 tunnels, one for HTTP and another for HTTPS traff
6267
1. Tunnel for HTTP traffic will use Traefik HTTP router as usual.
6368
2. Tunnel for HTTPS traffic is a bit more interesting and challenging. For it, we will use Traefik TCP router running in the passthrough mode since we don't want to terminate HTTPS traffic on the VPS but to delegate resolving certificates to the existing Traefik running on the client side to keep the existing setup and architecture.
6469
70+
<Image {...IMAGE_SIZES.FIXED.MDX_MD} src={TraefikLoadBalancerArchitectureImage} alt="Traefik load balancer architecture diagram" />
71+
6572
**Reminder:**
6673
6774
I already wrote about the advantage of resolving SSL certificates locally on home server in the [Architecture overview](https://nmc-docker.pi.nemanjamitic.com/blog/2025-04-29-rathole-traefik-home-server#architecture-overview) section of the previous article but here is a quick recap again:

0 commit comments

Comments
 (0)