Hello everyone, I'm new to traefik and trying to migrate from v1 to v2. I would really be very grateful if someone would take the time to help me. I think I migrated most of the static and dynamic configuration, but I am having troubles with migrating [acme] configuration.
traefik.toml v1:
[acme]
email = "email@domain.com"
storage = "/etc/traefik/acme.json"
entryPoint = "https"
acmeLogging = true
[[acme.domains]]
main = "sub1.domain.com"
sans = ["www.sub1.domain.com"]
[[acme.domains]]
main = "sub2.domain.com"
sans = ["www.sub2.domain.com"]
[[acme.domains]]
main = "subN.domain.com"
sans = ["www.subN.domain.com"]
[acme.httpChallenge]
entryPoint = "http"
I've been reading the documentation for 1 week, but I really just can't figure out some things in version 2.
Can anyone give me an example of this configuration how should look like in version 2?
I have more questions, but this one bothers me the most. I would really be happy if someone helped me. Thanks in advance.