Transparent url handling

Hello,

http://service1:9000/hub?open=%2F

How an URL is composed:

  • scheme: http
  • host: service1
  • port: 9000
  • path: hub
  • query: next=%2F

To define a rule, you can use several matchers:

  • Host(`...`) to manage the host
  • Path(`...`) or PathPrefix(`...`) to manage the path
  • Query(`...`) to manage query parameters

https://docs.traefik.io/v2.1/routing/routers/#rule