Is it possible with multiple regexreplace on one router?

This dont work... What is wrong ?

labels:
- "traefik.enable=true"
- "traefik.docker.network=outside"
- "traefik.http.routers.web.rule=Host(wanna.go.net)"
- "traefik.http.routers.web.tls=true"
- "traefik.http.services.web.loadbalancer.server.port=80"
- "traefik.http.middlewares.web1.replacepathregex.regex=/dodo/(.)"
- "traefik.http.middlewares.web1.replacepathregex.replacement=/4631/$$1"
- "traefik.http.middlewares.weby.replacepathregex.regex=/didi/(.
)"
- "traefik.http.middlewares.weby.replacepathregex.replacement=/1103/$$1"
- "traefik.http.routers.web.middlewares=web1@docker"
- "traefik.http.routers.web.middlewares=weby@docker"

Should it work ?

BR,

Reidar

You chain the middlewares like this:

- "traefik.http.routers.web.middlewares=web1,weby"

You can drop the @docker, as this is already the docker provider.

Ahh.. Nice one..
Thank you so much..

BR,

Reidar