Hello,
having a traefik v3 running as a docker container and need to forward all requests to different host. I'm not able to find a way how to add x-forwarded-for header to the requests
this is my proxy setup:
routers:
proxy-secure:
rule: "Host(`my-host-here`)"
service: afrodite
entryPoints:
- https
middlewares:
- removeIdentification
- compress
tls:
certResolver: "mytlschallenge"
services:
afrodite:
loadBalancer:
servers:
- url: "https://my-backend-host-here"
passHostHeader: true
I can see just headers X-Forwarded-Host and X-Forwarded-Server but not x-forwarded-for or any other holding the client IP