I have a domainname, spelled with and without hyphen, and I want both www and non-www versions.
This gives 4 variations of the hostname.
If I were to set up a Hostregexp for (www.)domain(-)name.tld, would there be generated certificates as needed?
If not, I guess it won't work to get traefik to generate keys.
I better stick with - "traefik.http.routers.mysite.rule=(Host(www.my-site.dom
) || Host(my-site.dom
) || Host(www.mysite.dom
) || Host(mysite.dom
))"
Is it possible to split this over multiple lines, either a line-continuation character, or multiple rule lines?
Otherwise, certificates won't be made, correct?