Skip to content
Computing Medium #reverse-proxy#nginx#envoy

Reverse Proxy: Single Front, Many Backends

TLS termination, routing, caching, load-balancing all at the edge layer.

A free, animated reverse proxy: single front, many backends you can read here or embed on any website, from Scrollchart.

Reverse Proxy: Single Front, Many Backends

Reverse Proxy: Single Front, Many BackendsTLS termination, rate limiting, path routing, caching, and request rewriting all at the edge layerClientReverse ProxyBackendsBrowserHTTPS :443TLS terminationdecrypts HTTPS, re-encrypts internallyRate limiting100 req/s per IP, token-bucketHost/path routingmatches SNI + URI prefix, picks backendCache layerserve stale-while-revalidate, 200/301Request rewritingstrip /api prefix, inject X-Real-IP/api/*App server A/api/*/static/*App server B/static/*(default)App server C(default)cache HIT: served from proxy, no backend requestImplsnginxEnvoyTraefikHAProxyCaddyProxy hides backend topology, enforces policy, and absorbs TLS cost centrallyCache hit: 0 backend requests | Cache miss: proxy fetches, stores, forwards | One cert, many apps

Client traffic terminates TLS at the proxy, which routes by host/path to one of several backends. Caching, rate limiting, and request rewriting layers annotated. Common implementations (nginx, Envoy, Traefik, HAProxy) compared.

Good for

  • Backend architecture explainers for developers new to production infrastructure
  • nginx and Envoy configuration tutorials and route-matching guides
  • DevOps runbooks covering TLS offload, caching strategy, and rate-limit tuning

Source & accuracy

This reverse proxy: single front, many backends is an editorial illustration built to represent the concept accurately. Where it shows figures, they are typical or representative values chosen to make the relationship clear, not a single underlying dataset. The diagram and its explainer are reviewed and maintained centrally, and updated over time as understanding improves.

The edge gateway abstraction

A reverse proxy sits in front of backend servers and handles client connections on their behalf. Clients connect to the proxy (single public IP), the proxy forwards the request to one of many backends, and the client sees a unified service. The proxy terminates TLS, decrypts the request, inspects it, and decides which backend gets it. Responses flow back through the proxy and are returned to the client. From the client's perspective, there is a single server; the backends are hidden.

Functions performed at the edge

TLS termination (decryption, re-encryption per backend) offloads CPU from backends. Request routing sends requests to different backends based on path (API requests to backend A, static files to a cache server), host header, or user session. Load balancing distributes requests evenly. Caching stores responses from backends and serves repeated requests directly. Request/response modification rewrites headers, adds tracking, or strips sensitive data. Authentication can be enforced at the proxy before reaching backends.

Scaling and isolation benefits

The proxy absorbs connection overhead (many slow clients connecting) and serves from cache or a connection pool to backends, reducing backend load. If a backend dies, the proxy routes around it. Adding backends does not require client-side changes: the proxy balances across the new pool. Security improves: backends do not expose their real IPs, and the proxy can rate-limit or block malicious requests. Debugging becomes easier: the proxy logs every request, providing a single view of all traffic.

Embed this diagram

Add this animated reverse proxy: single front, many backends to your own site. Copy one line of HTML, or use the embed builder for theme and sizing options.

Reference

What this is
A free, embeddable, animated reverse proxy: single front, many backends for any website.
Who uses it
Developer blogs, DevOps / SRE sites.
How to embed
Copy one line of HTML. No signup. No watermark. Works in WordPress, Webflow, Ghost, Substack, plain HTML.
File size
iframe embed, ~80 KB gzipped (loads on demand, does not block your page paint).
License
Free forever. Editorial explainer text included; updated centrally over time.

Embed format options

Copy the universal HTML snippet, the WordPress shortcode, or an iframe fallback - see the WordPress plugin page for details. Any format keeps the same Core Web Vitals profile and the same explainer text.

Embed snippet
<div data-scrollchart="reverse-proxy" data-scrollchart-v="1"></div>
<script src="https://scrollchart.com/embed.js" async></script>

Frequently asked questions

Where can I get a free animated "Reverse Proxy: Single Front, Many Backends" for my website?
Scrollchart provides "Reverse Proxy: Single Front, Many Backends" as a free, embeddable animated diagram you can add to any website with one line of HTML. No signup is required and there is no watermark. The diagram and its explainer text are served from scrollchart.com, so the embed stays current without any maintenance on your end.
How do I embed a reverse proxy: single front, many backends in a developer or tech blog?
Copy the one-line snippet from the Scrollchart diagram page and paste it into your post HTML. It works in any static site generator, CMS, or hand-coded HTML page. The embed is a thin loader, not an iframe, so the content is fully in your DOM.