StackPractices

Tag: proxy

Browse 5 practical software engineering resources tagged with "proxy". Discover code recipes, design patterns, documentation templates, and in-depth guides to help you build, deploy, and maintain production-ready solutions involving proxy. Each resource is written for engineers who ship real systems, with copy-paste examples and practical trade-offs.

Proxies and Reverse Proxies

A proxy acts as an intermediary between clients and servers. Reverse proxies provide load balancing, SSL termination, caching, and security at the edge.

The resources below cover Nginx, Envoy, HAProxy, API gateways, and forward vs reverse proxies. Each guide shows how to route and protect traffic with proxies.

Every resource includes clear explanations, copy-paste code, and practical warnings. Use them to make informed decisions, avoid production pitfalls, and speed up your delivery. If you are just getting started, read the beginner-friendly articles first; if you are experienced, jump straight to the advanced patterns and architecture guides. New resources are added regularly, so bookmark this page and check back for the latest patterns.

Cache HTTP Responses with Nginx Reverse Proxy

Configure Nginx as a caching reverse proxy to cache upstream HTTP responses with TTL zones, cache...

Ambassador: Offload Cross-Cutting Concerns to a Proxy

How to offload cross-cutting concerns to a proxy ambassador. Covers connection pooling, retry...

Proxy Pattern

Provide a surrogate or placeholder for another object to control access to it. A structural design...

Proxy Pattern for API Response Caching

How to implement a caching proxy that intercepts API calls and stores responses to reduce latency...

Serverless DB Connection Pooling Pattern

Manage database connections across serverless invocations by using external connection poolers,...