Comment on page
CAA_BUILDER
For example you can use:
dnsconfig.js
CAA_BUILDER({
label: "@",
iodef: "mailto:[email protected]",
iodef_critical: true,
issue: [
"letsencrypt.org",
"comodoca.com",
],
issuewild: "none",
})
The parameters are:
label:
The label of the CAA record. (Optional. Default:"@"
)iodef:
Report all violation to configured mail address.iodef_critical:
This can betrue
orfalse
. If enabled and CA does not support this record, then certificate issue will be refused. (Optional. Default:false
)issue:
An array of CAs which are allowed to issue certificates. (Use"none"
to refuse all CAs)issuewild:
An array of CAs which are allowed to issue wildcard certificates. (Can be simply"none"
to refuse issuing wildcard certificates for all CAs)
CAA_BUILDER()
returns multiple records (when configured as example above):dnsconfig.js
CAA("@", "iodef", "mailto:[email protected]", CAA_CRITICAL)
CAA("@", "issue", "letsencrypt.org")
CAA("@", "issue", "comodoca.com")
CAA("@", "issuewild", ";")
Last modified 2mo ago