fix(smartacme): Include base domain alongside wildcard when building identifiers for wildcard certificate requests
This commit is contained in:
@@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@push.rocks/smartacme',
|
||||
version: '9.1.2',
|
||||
version: '9.1.3',
|
||||
description: 'A TypeScript-based ACME client for LetsEncrypt certificate management with a focus on simplicity and power.'
|
||||
}
|
||||
|
||||
@@ -430,6 +430,7 @@ export class SmartAcme {
|
||||
|
||||
if (isWildcardRequest) {
|
||||
identifiers.push({ type: 'dns', value: `*.${certDomainName}` });
|
||||
identifiers.push({ type: 'dns', value: certDomainName });
|
||||
} else {
|
||||
identifiers.push({ type: 'dns', value: certDomainName });
|
||||
|
||||
|
||||
Reference in New Issue
Block a user