I have played with Traefik in the past. Setting things was not too hard and I wrote about it here https://imwz.io/laradock-traefik/ . Mainly wanted to run Laravel with Traefik and that did work.
But what I wondered about is the option to work with many domains. In the .toml file we tend to have something like this to get domains their SSL Certificate:
[[acme.domains]]
# main = "domain.com"
# sub = "monitor.domain.com"
But what if I want to add SSL certificates to all domains / sites added to the server automatically? This so I can keep on adding sites and have them secure with Let's Encrypt SSL. Is it then possible to do this like you could with DNS Lexicon, Dehydrated and a reverse Nginx server?
With Dehydrated and DNS Lexicon new certificates are added to domains leading to server on the fly if they have not yet already. That is very convenient. No need to add domains to a file. How do you do this with Traefik?