Skip to content

Commit fc0b3c0

Browse files
authored
Merge pull request #58 from Satindar31/patch-1
Add some docs for DS records
2 parents 8775275 + 6203b51 commit fc0b3c0

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/useful/domain-structure.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ Note: Please refer to the [frequently asked questions](https://docs.is-a.dev/faq
181181
}
182182
```
183183
- **CAA** record: This must be a list of Certification Authority Authorization (CAA) records. Each record specifies the authority permitted to issue SSL certificates for your domain, with fields for `flags`, `tag`, and `value`.
184-
```js
184+
```json
185185
{
186186
"record": {
187187
"CAA": [
@@ -199,6 +199,15 @@ Note: Please refer to the [frequently asked questions](https://docs.is-a.dev/faq
199199
}
200200
}
201201
```
202+
- **DS** record: This must be a list of Delegation Signer(DS) records. Each verifies the authenticity of the (subdomain) zone with field `key_tag`, `algorithm`, `digest_type` and `digest`.
203+
```json
204+
"DS": [{
205+
"key_tag": 2371,
206+
"algorithm": 13,
207+
"digest_type": 2,
208+
"digest": "C2074462471B81206F792AEC23469EF33DDC53538E8580DCCC92FD130C9A6096"
209+
}]
210+
```
202211

203212
### proxied (*optional*)
204213
Enable Cloudflare proxy for your domain. Disabled by default. To enable it, add this line of code:

0 commit comments

Comments
 (0)