Part 3 of 7 — Self-hosting Supabase: a learning journey

We need a reverse proxy. It sits in front of all our containers, terminates TLS, and routes incoming requests to the right service based on the hostname. Traefik is the standard choice for Docker-based setups because it can read container labels and configure itself automatically.

Add a...