Add the following configuration to your config/traefik/dynamic_config.yml to expose the Integration API at https://api.example.com/v1:
dynamic_config.yml
routers: # Add the following two routers int-api-router-redirect: rule: "Host(`api.example.com`)" service: int-api-service entryPoints: - web middlewares: - redirect-to-https - badger # If you have Badger >=1.3.0 and it's enabled in the middlewares section of the dynamic config int-api-router: rule: "Host(`api.example.com`)" service: int-api-service entryPoints: - websecure tls: certResolver: letsencrypt services: # Add the following service int-api-service: loadBalancer: servers: - url: "http://pangolin:3003"