Posts

Showing posts with the label traefik

Magento 2: Too many redirects behind traefik reverse-proxy

Image
Clash Royale CLAN TAG #URR8PPP Magento 2: Too many redirects behind traefik reverse-proxy In front of my web servers and Docker applications I'm running Traefik to handle load balancing and reverse-proxy. In this specific case Magento 2 is running on another host in the same private network as the Traefik host. Traffic is coming into the firewall on port 80/443 and forwarded to Traefik which forwards the request based on the domain name (in this case exampleshop.com). My Traefik configuration looks like this: [backends] [backends.backend-exampleshop] [backends.backend-exampleshop.servers.server1] url = "http://192.168.1.224:80 passHostHeader = true [frontends] [frontends.exampleshop] backend = "backend-exampleshop" [frontends.exampleshop.routes.hostname] rule = "Host:exampleshop.com" For regular websites above configuration always worked as expected (a working HTTPS connection with valid Let's Encrypt cert) but in this Magento ...