hello,
im trying to run one container/service with two different hostrules. one global dns and one private/local dns. when configuring two routers via labels, the routes vanishes, same as the service.
im running this in bridge network, traefik is part of this, too. i want my global dns using tls/https, this works fine, but when adding .local dns it doenst, or using || to join to Host rules, entrypoint web doenst get satisfied/404
labels:
- 'traefik.enable=true'
- "traefik.http.routers.secure-app.entryPoints=high,web,websecure"
- "traefik.http.routers.secure-app.rule=Host(app.hostt.domin.tld
) || Host(app.host
)"
- "traefik.http.routers.secure-app.tls=true"
- "traefik.http.routers.secure-app.tls.certResolver=letsencrypt"
- "traefik.http.routers.secure-app.tls.domains=app.host.domain.tld"
- "traefik.http.services.secure-app.loadbalancer.server.port=9696"
when doing two routers. e.g. traefik.http.routers.secure-app and routers.app it vanishes from the dashboard.do i need to workaround with a file-provider?
regards