-
I am using Lego to renew SSL certificates for several domain names. For some reasons (similar to #1816), I have to disable CNAME for some of these domains, but need to enable CNAME for others. However, My current solution is to trigger different domain name renewals at different times, and reset Is it possible to implement pseudo code: config := lego.NewConfig(user)
config.DisableCNAMESupport = true
client, err := lego.NewClient(config) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
You can set the env var programmatically: os.Setenv("LEGO_DISABLE_CNAME_SUPPORT", "false")
It is not possible. |
Beta Was this translation helpful? Give feedback.
You can set the env var programmatically:
It is not possible.