You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/guides/discord-verification.md
+10-9Lines changed: 10 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,23 +26,24 @@ tags: guides
26
26
6. Copy the verification string.
27
27

28
28
29
-
### Edit your domain file
29
+
### Create your domain file
30
30
31
-
!!!
32
-
You must already own an is-a.dev domain to do this.
33
-
!!!
34
-
35
-
Edit your domain file (`domains/your-domain.json`) and **add this snippet after the `records` key**:
31
+
Create a JSON file inside the `domains/` directory called `domains/_discord.example.json` with the following content:
36
32
37
33
```json
38
-
"services": {
39
-
"discord": "your-discord-verification-string"
34
+
{
35
+
"owner": {
36
+
"username": "your-github-username"
37
+
},
38
+
"records": {
39
+
"TXT": "discord-verification-string"
40
+
}
40
41
}
41
42
```
42
43
43
44
Please remember to add a comma after the `records` key's closing brace!
44
45
45
46
## Configuration
46
47
47
-
After your pull request has been merged, repeat steps 1–5 and press the `Verify` button.
48
+
After your pull request has been merged, repeat steps 1-5 and press the `Verify` button.
48
49
If it shows any error such as `Unable to verify your domain`, try waiting a few minutes (sometimes up to 24 hours) as the DNS might not have propagated yet.
Copy file name to clipboardExpand all lines: src/guides/vercel.md
+21-5Lines changed: 21 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ If you haven't made a Vercel site, make sure to make one. Follow the instruction
16
16
17
17
1. Navigate to your Vercel dashboard. Then, navigate to the "Domains" tab of your project's settings. Click "Add Domain" and enter the is-a.dev subdomain you want (e.g. `example.is-a.dev`).
18
18
2. Once you're past the "Configure Environment and Redirects" tab—if unsure, just click "Save"—then click "Continue manually". Copy the TXT verification value that you'll get; you'll need this in step 4.
19
-
3.Fork our [repository](https://github.com/is-a-dev/register) and create a file **in the `/domains` folder** named `your-domain.json`. Replace `your-domain` with the name of the subdomain you chose earlier in the Vercel dashboard.
19
+
3.[Fork](https://github.com/is-a-dev/register/fork) our repository and create a file **in the `/domains` folder** named `your-domain.json`. Replace `your-domain` with the name of the subdomain you chose earlier in the Vercel dashboard.
20
20
4. In this file, paste the following JSON and ***make sure to replace all the values properly***, except for the CNAME, which you should leave untouched.
21
21
22
22
```json
@@ -27,16 +27,32 @@ If you haven't made a Vercel site, make sure to make one. Follow the instruction
> If you want to provide other records such as MX or TXT, remove the CNAME and use the following record instead:
35
+
36
+
```json
37
+
"A": ["76.76.21.21"]
38
+
```
39
+
40
+
5. Create a second file named `_vercel.your-domain.json` (replace `your-domain` with your chosen subdomain) and add the following content (make sure to replace the TXT record value with your verification string):
Once you have created your file, make a pull request to the [main repository](https://github.com/is-a-dev/register). Then you'll need to be patient until it gets merged. If you want a chance to get your PR merged faster, join our [Discord server](https://discord.gg/is-a-dev-830872854677422150) and send your pull request link ***once*** in `#pull-requests`.
56
+
Once you have made these two files, you can now make a pull request to the [repository](https://github.com/is-a-dev/register). Then you'll need to be patient until it gets merged. If you want a chance to get your PR merged faster, join our [Discord server](https://discord.gg/is-a-dev-830872854677422150) and send your pull request link ***once*** in `#pull-requests`.
41
57
42
58
Once the pull request has been merged your site should be working; if it is still redirecting to the is-a.dev site, try clearing your cache.
Copy file name to clipboardExpand all lines: src/useful/domain-structure.md
+2-11Lines changed: 2 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -231,7 +231,7 @@ Note: Please refer to the [frequently asked questions](https://docs.is-a.dev/faq
231
231
}
232
232
}
233
233
```
234
-
-**`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`.
234
+
-**`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`.
235
235
```json
236
236
"DS": [{
237
237
"key_tag": 2371,
@@ -240,15 +240,6 @@ Note: Please refer to the [frequently asked questions](https://docs.is-a.dev/faq
0 commit comments