We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
we have generated about 150 certs on one server.
But there are about 100k files in the directory /var/lib/acme/keys which make generating new certs awefully slow.
What are we doing wrong?
greetings Andre
The text was updated successfully, but these errors were encountered:
After running acmetool cull (deleting old certificates), you could run some "garbage collection" on keys that are older than 3 months:
acmetool cull
find /var/lib/acme/keys -type d -mtime +90 -exec rm -rf {} +
(updated Nov. 17 2018)
Sorry, something went wrong.
I think this is supposed to be handled by acmetool cull, but for some reason isn't (HPKP?).
probably same as this answer?
That thread is about keys linked from 'live'. This thread is about the opposite.
No branches or pull requests
Hi,
we have generated about 150 certs on one server.
But there are about 100k files in the directory /var/lib/acme/keys which make generating new certs awefully slow.
What are we doing wrong?
greetings
Andre
The text was updated successfully, but these errors were encountered: