Skip to content

Commit

Permalink
Update some parts
Browse files Browse the repository at this point in the history
  • Loading branch information
iostpa committed Oct 25, 2024
1 parent 6136ae6 commit 993dc6f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/docs/discord-verification/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Create a JSON file inside the `domains/` directory called `domains/_discord.exam
"email": "email@address"
},
"record": {
"TXT": "discord-verification-string"
"TXT": ["discord-verification-string"]
}
}
```
Expand Down
6 changes: 2 additions & 4 deletions src/docs/domain-structure/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ Below are some examples for the given record types:
```json
{
"record": {
"TXT": "Hello World!"
"TXT": ["Hello World!"]
}
}
```
Expand All @@ -159,9 +159,7 @@ Below are some examples for the given record types:
}
}
```
> [!NOTE]
> Note: Please refer to the [frequently asked questions](https://is-a.dev/docs/faq/) for clarification on what or who we allow NS records for.
If you want a example on what we want as the reasonings, you can [checkout this PR](https://github.com/is-a-dev/register/pull/16758).
Note: Please refer to the [frequently asked questions](https://is-a.dev/docs/faq/) for clarification on what or who we allow NS records for. If you want a example on what we want as the reasonings, you can [checkout this PR](https://github.com/is-a-dev/register/pull/16758).

- **SRV** record: This must be a list of service records. Each record specifies the priority, weight, port, and target for a service on your domain. SRV records are often used for services such as VoIP, messaging, and more.
```json
Expand Down
2 changes: 1 addition & 1 deletion src/docs/github-pages-verification/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Create a JSON file inside the `domains/` directory called `domains/hostname.json
"email": "<email@address>"
},
"record": {
"TXT": "<github-verification-string>"
"TXT": ["<github-verification-string>"]
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion src/docs/vercel/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ When connecting the domain, you will be greeted with a TXT verification string.
"discord": "insert-discord-user-ID-here"
},
"record": {
"TXT": "insert-TXT-string-you-got-from-vercel-here"
"TXT": ["insert-TXT-string-you-got-from-vercel-here"]
}
}
```
Expand Down

0 comments on commit 993dc6f

Please sign in to comment.