From 5953331c7319601be30dda12c7cda59cb4b626d7 Mon Sep 17 00:00:00 2001 From: Kevin Pollet Date: Thu, 13 Mar 2025 09:42:04 +0100 Subject: [PATCH] Add back forwarded headers section in FAQ --- docs/content/getting-started/faq.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/content/getting-started/faq.md b/docs/content/getting-started/faq.md index 1c3d3f6a8..66f2d4d04 100644 --- a/docs/content/getting-started/faq.md +++ b/docs/content/getting-started/faq.md @@ -143,6 +143,21 @@ To take into account the new certificate contents, the update of the dynamic con One way to achieve that, is to trigger a file notification, for example, by using the `touch` command on the configuration file. +## What Are the Forwarded Headers When Proxying HTTP Requests? + +By default, the following headers are automatically added when proxying requests: + +| Property | HTTP Header | +|---------------------------|----------------------------| +| Client's IP | X-Forwarded-For, X-Real-Ip | +| Host | X-Forwarded-Host | +| Port | X-Forwarded-Port | +| Protocol | X-Forwarded-Proto | +| Proxy Server's Hostname | X-Forwarded-Server | + +For more details, +please check out the [forwarded header](../routing/entrypoints.md#forwarded-headers) documentation. + ## How Traefik is Storing and Serving TLS Certificates? ### Storing TLS Certificates