fix(smartacme): Include base domain alongside wildcard when building identifiers for wildcard certificate requests

This commit is contained in:
2026-02-16 02:46:54 +00:00
parent e2d182ca03
commit adf9262ded
3 changed files with 8 additions and 1 deletions

View File

@@ -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 });