Caution
client under development
a client to manage TLS certificates with LetsEncrypt.org
Tip
Use library.
key := leacme.NewKey("account")
client := leacme.NewClient(key, true)
client.RegisterAccount("yourAccountName-itCanBeAnything", "mailto:[email protected]")
client.GetTLS("subdomain(if needed).domain.tld(mostly .com or .in)")
// as library
package main
import (
leacme "github.com/mugund10/LetsEncryptAcmeClient/leacme"
)
func main() {
key := leacme.NewKey("account")
client := leacme.NewClient(key, true)
client.RegisterAccount("mugund10", "mailto:[email protected]")
client.GetTLS("homeserver.mugund10.top")
}
go get github.com/mugund10/LetsEncryptAcmeClient/leacme