We're currently in the process of introducing Traefik as our proxy to our UI/API microservices that live in Docker Swarm.
Currently, we have 15 web servers sitting behind a physical loadbalancer with a dedicated VIP. Right now, apache is running on the servers and proxying requests to physical ports that are being advertised by swarm to the different microservices. The load balancer is handling SSL and distributing load to the servers.
My question is what is the best way to set up Traefik to replace apache? Our current mindset is to spin up Traefik as a swarm service and run one instance per server. We'll move SSL handling from the physical load balancer to Traefik. Is this overkill? Do we need this many Traefik instances? Should we have fewer Traefik instances and shrink the physical load balancer pool? Should the Traefik instances be limited to running on swarm manager nodes?
Thank you!