Fixed consul registered tags

This commit is contained in:
Piotr Biernat 2024-07-17 15:22:30 +02:00
parent ab6189e855
commit 0aa6fc2aa3

View File

@ -183,7 +183,7 @@ func (s *Service) getTags() []string {
"traefik.http.routers." + s.Name + ".entryPoints=https",
// "traefik.http.routers." + s.Name + ".tls=true",
"traefik.http.routers." + s.Name + ".service=" + s.Name,
"traefik.http.routers." + s.Name + ".middlewares=stripprefix_" + s.Name,
"traefik.http.routers." + s.Name + ".middlewares=stripprefix_" + s.Name + ",auth_" + s.Name,
// "traefik.http.routers." + s.Name + ".middlewares=auth_" + s.Name + ",requestid_" + s.Name + ",stripprefix_" + s.Name,
"traefik.http.services." + s.Name + ".loadbalancer.server.scheme=http",
"traefik.http.services." + s.Name + ".loadbalancer.server.port=" + strconv.Itoa(s.port),