1
Proxy inverso simple con Traefik
Actualmente estoy usando Apache como proxy para mis contenedores LXD, usando este tipo de configuración: <VirtualHost *:80> ServerName example.com ProxyRequests off ProxyPass / http://10.0.0.142/ retry=0 ProxyPassReverse / http://10.0.0.142/ ProxyPreserveHost On </VirtualHost> Me gustaría cambiar a traefik . He intentado esta configuración: defaultEntryPoints = ["http"] [entryPoints] [entryPoints.http] address = ":80" [backends] …