Duplicate Certs #75
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I keep getting this error, is it from Greenlock or from Let's encrypt?
This happens both running Greenlock in staging & production mode.
I am using
greenlock-store-fs
on a mounted docker volume.Checked the volumn and this domain only has a single certifacate in there.
It's also a brand new domain, just registered it, added it to my setup and then ran my greenlock app.
Looks like
manager.find
&manager.set
are both called multple times.It seems that
manager.set
does indeed request multiple certificate.Also looks like
manager.get
is never requested.Few questions:
manager.get
even required anymore?Thanks in advance
That's from Greenlock.
There's no way to revoke certificates in greenlock, but that's not related to the problem you're having here.
IIRC,
manager.get
is not used whenmanager.find
is used. Details are here: https://git.rootprojects.org/root/greenlock-manager-test.jsI'm not sure why you would get that error.
My first instinct is to say just start over fresh using the quickstart and see if it happens again.
If you need paid support, this is probably something we could look over and solve together within 2-3 hours.
Also, please let me know if you already figured this out.
Hi there, I have a similar error :
[400] Error creating new order :: Domain name "test8.domain.com" is redundant with a wildcard domain in the same request. Remove one or the other from the certificate request.
context: 'cert_issue',
subject: '.mydomain.com',
altnames: [ '.mydomain.com', 'test8.mydomain.com' ],
toJSON: [Function: errorToJSON],
servername: 'test6.mydomain.com',
_site: {
challenges: { 'dns-01': [Object] },
subject: '.mydomain.com',
renewAt: 1624196379695,
altnames: [ '.mydomain.com', 'test8.mydomain.com' ]
}
I am using greenlock-store-fs ("basePath": "./greenlock.d") on a mounted docker volume.
BTW this is not only on the docker image, I get this error on the same setting in a not docker container
I tried to let the altnames without the subdomains like altnames: [ '*.mydomain.com'] i don't get the error but the app doesn't load...