Files
awesome-kubernetes/v2-docs/web-servers.md

14 KiB
Raw Blame History

Web Servers and Reverse Proxies: Apache, Nginx, HAProxy, Traefik and more

!!! info "Architectural Context" Detailed reference for Web Servers and Reverse Proxies: Apache, Nginx, HAProxy, Traefik and more in the context of Networking & Service Mesh.

Table of Contents

  1. Architectural Foundations
  1. Architecture
  1. Infrastructure
  1. Traffic Management

Architectural Foundations

Kubernetes Tools

General Reference

Architecture

Infrastructure

Load Balancing

  • (2021) opensource.com: A beginner's guide to load balancing [N/A CONTENT] [COMMUNITY-TOOL] — An essential guide outlining fundamental load-balancing mechanisms. Investigates Layer 4 vs Layer 7 routing protocols, round-robin algorithms, and performance implications across scalable microservice configurations.

Infrastructure (1)

Web Servers

Apache HTTP Server

  • (2025) Apache [C CONTENT] [DOCUMENTATION] [COMMUNITY-TOOL] — The main technical site for the Apache HTTP Server, the industry-standard web server. Continues to power global web networks with highly stable modular routing rules and robust security mechanisms.

App Servers

  • (2025) unit.nginx.org [C CONTENT] [ADVANCED LEVEL] [DOCUMENTATION] [COMMUNITY-TOOL] — Official portal for NGINX Unit, a dynamic, lightweight application server designed to run polyglot microservices simultaneously. Dynamically configured on the fly via JSON REST APIs without service disruption.

CICD Integration

  • (2020) Apache Reverse Proxy for Jenkins 1 [APACHECONF CONTENT] 🌟 [LEGACY] — A historical configuration repository detailing reverse-proxy deployment configurations for Jenkins behind Apache. Due to more than 4 years of inactivity, it is maintained as a legacy setup reference.

NGINX Handbooks

  • (2021) freecodecamp.org: The NGINX Handbook 🌟 [N/A CONTENT] [COMMUNITY-TOOL] — A master handbook exploring NGINX server architecture. Reviews custom security header injections, performance caching designs, proxy configurations, and advanced debugging processes for production environments.

Reverse Proxy

  • (2025) Apache Reverse Proxy Guide [N/A CONTENT] [DOCUMENTATION] [COMMUNITY-TOOL] — Official engineering handbook illustrating the deployment and configuration of the Apache HTTP Server as a reverse proxy. Details mod_proxy directives, buffer limits, and load-balancer grouping policies.

Traffic Management

Kubernetes Ingress Controllers

Alternative Ingress

  • (2020) opensource.com: Try this Kubernetes HTTP router and reverse proxy [GO CONTENT] [ADVANCED LEVEL] [COMMUNITY-TOOL] — An overview of Skipper, an open-source HTTP router and reverse proxy designed for highly customized routing scenarios. It highlights Skipper's unique strength in dynamically modifying requests using an extensible filter chain, though it occupies a niche compared to market-dominant ingress engines.

Traefik Ingress

  • (2026) Traefik [GO CONTENT] [DOCUMENTATION] [COMMUNITY-TOOL] — The canonical repository and site for Traefik, a modern cloud-native reverse proxy and ingress controller designed for dynamic service discovery. It automatically listens to platform API registries (such as Kubernetes and Consul) to dynamically update routing tables without manual reloads.
  • (2020) opensource.com: Directing Kubernetes traffic with Traefik [N/A CONTENT] [COMMUNITY-TOOL] [GUIDE] — An introductory engineering guide outlining the mechanics of deploying Traefik to route internal cluster traffic. The resource demonstrates how Traefik processes Custom Resource Definitions (CRDs) to define advanced routing rules, headers, and SSL termination points transparently.
  • (2020) thenewstack.io: Using Traefik Ingress Controller with Istio Service Mesh [N/A CONTENT] [ADVANCED LEVEL] [COMMUNITY-TOOL] — An architectural examination of combining Traefik's edge ingress capabilities with the granular micro-segmentation of the Istio Service Mesh. This dual-layer approach optimizes ingress pathing while maintaining strict mTLS and telemetry enforcement across internal pod networks.

Load Balancing and Reverse Proxy

HAProxy Administration

Nginx Playground

  • (2021) jvns.ca: New tool: an nginx playground [N/A CONTENT] [EMERGING] — An interactive configuration testing platform designed to simplify complex Nginx rulesets. While the curator positions this as an experimental learning aid, live evaluation shows it has become an indispensable debugging tool for platform engineers needing to validate route maps, regex rewrites, and upstream headers safely outside production environments.
  • (2021) nginx-playground.wizardzines.com 🌟 [N/A CONTENT] [COMMUNITY-TOOL] — The live application corresponding to Julia Evans' Nginx configuration playground. It delivers a sandboxed, browser-based runtime that dynamically executes and reports Nginx behavior on arbitrary configurations, bridging the gap between theoretical syntax and actual routing behaviors without local environment overhead.

💡 Explore Related: Cloudflare | Caching | Kubernetes Networking