acme
acme copied to clipboard
A simple ACME command line tool without 3rd party deps!
What's the recommended way of renewing an existing letsencrypt certificate using `cmd/acme`? Just running `acme cert $domain` will re-issue a new `.crt`. Is there a way of handling this automatically?...
First time user here, with some notes on usability with "acme reg -gen mailto:[email protected] - first run fails with **account key: open /home/me/.config/acme/account.key: no such file or directory** - solution...
ACMEv1 sunset currently breaks at least `acme reg`: ``` $ acme reg -gen mailto:[email protected] 403 urn:acme:error:unauthorized: Account creation on ACMEv1 is disabled. Please upgrade your ACME client to a version...
``` root@ip-10-108-9-175:~# acme reg -gen mailto:[email protected] account key: open /root/.config/acme/account.key: no such file or directory root@ip-10-108-9-175:~# mkdir -p /root/.config/acme/ root@ip-10-108-9-175:~# acme reg -gen mailto:[email protected] CA requires acceptance of their Terms...
hi. root@umh:~# ./acme-linux-amd64 cert -s localhost:6060 mydomain.com mydomain.com: acme: identifier authorization failed root@umh:~# how to fix it? thank you
How can acme be configured to use a different CA (other than LetsEncrypt) ?? I added another ACME-compatible CA to discoAliases, but no effect. Is there a command line option...
Requesting a wildcard certificate seems to not be possible at the moment: `*.example.com: 400 urn:acme:error:malformed: Error creating new authz :: Wildcard names not supported`
``` func main() { http.HandleFunc("/do", func(w http.ResponseWriter, r *http.Request) { fmt.Println( "do") }) err := http.ListenAndServeTLS(":9000", "key.pem", "cert.pem", nil) if err != nil { panic(err) } } ``` 1# using...
Where is the AppEngine module? seem to be missing.