Hi, I would like to ask for info, maybe already requested, but I can't find solution.
I need to install several instances of postgres, mysql with docker compose and make them reachable via traefik.
if i create tcp router with HostSNI('*') it is not good, as each instance needs to be reached with domain name.
if i instead make the tcp router with Host('xxx.yy.com') and enable tls is not good, as the various applications that will connect from the outside to traefik to use the db, do not have the ability to conect to the db in ssl.
is there any way to make the various instances reachable from outside traefik without ssl?
Thx!