I'm using traefik with Docker Swarm. I use forwardauth and set the middleware with this label:
traefik.http.routers.redirs.middlewares=authelia-sendutil@docker
It works perfectly.
Now, in other services, I want to append a middleware to the redirs
router.
So when deploying service A
I want to add middleware-A
, and equivalently with service B
.
I would need to configuration to be equivalent to setting the label
traefik.http.routers.redirs.middlewares=authelia-sendutil@docker,middleware-A@docker,middleware-B@docker
Is there a way to achieve this?
(I can provide detailed information why I want this, and I also have a workaround if this is not possible )