Patrick Schaaf
Patrick Schaaf
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...
This change provides a new option -webroot to the "acme cert" subcommand, taking a directory taking a directory as argument, and mutually exclusive with -dns or -manual. If that option...
When "acme reg" creates a new configuration, by writing an account.json file, let it remember the directory URL used. Later, use that as the default on "acme cert", unless overridden...
Trying to improve things here. I don't know how to catch that "context deadline exceeded" situation, though. Some kind of better error message would be useful there, too.
As I'm right now only using manual challenges, I was surprised that the code nevertheless listened on 127.0.0.1:8080 during "acme cert". This change moves the listening setup inside the appropriate...
Another nitpick on first playing with your program: once I got it to register, I immediately proceeded to register once more against the staging server, using **acme reg -c .config/acme.staging...
The microtime delta tests for "> 0.1" failed on my machine, with times actually 0.004 and similar. This changes them all to "> 0.001", making the test no longer FAIL...