You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's currently only possible to add/remove certificates from txacme by touching/deleting certificate files in the certificate directory (or adding/removing from some other store implementation).
It's technically possible to directly store empty certificates in an ICertificateStore and then call the AcmeIssuingService._check_certs() but that is messy and may be prone to race conditions with the timed invocation of the same method.
It should be possible to safely add and remove certificates from txacme.
A further iteration on this is perhaps the ability to modify certificates, e.g. to change (or as it is described in the certbot client, "expand") the SANs (#37).
The text was updated successfully, but these errors were encountered:
It's currently only possible to add/remove certificates from txacme by touching/deleting certificate files in the certificate directory (or adding/removing from some other store implementation).
It's technically possible to directly store empty certificates in an
ICertificateStore
and then call theAcmeIssuingService._check_certs()
but that is messy and may be prone to race conditions with the timed invocation of the same method.It should be possible to safely add and remove certificates from txacme.
A further iteration on this is perhaps the ability to modify certificates, e.g. to change (or as it is described in the certbot client, "expand") the SANs (#37).
The text was updated successfully, but these errors were encountered: