Skip to content

Commit e7a4429

Browse files
authored
remove services docs
1 parent b5c0703 commit e7a4429

File tree

3 files changed

+33
-25
lines changed

3 files changed

+33
-25
lines changed

src/guides/discord-verification.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,23 +26,24 @@ tags: guides
2626
6. Copy the verification string.
2727
![](../media/discord/step_6.png)
2828

29-
### Edit your domain file
29+
### Create your domain file
3030

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:
3632

3733
```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+
}
4041
}
4142
```
4243

4344
Please remember to add a comma after the `records` key's closing brace!
4445

4546
## Configuration
4647

47-
After your pull request has been merged, repeat steps 15 and press the `Verify` button.
48+
After your pull request has been merged, repeat steps 1-5 and press the `Verify` button.
4849
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.

src/guides/vercel.md

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ If you haven't made a Vercel site, make sure to make one. Follow the instruction
1616

1717
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`).
1818
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.
2020
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.
2121

2222
```json
@@ -27,16 +27,32 @@ If you haven't made a Vercel site, make sure to make one. Follow the instruction
2727
},
2828
"records": {
2929
"CNAME": "cname.vercel-dns.com"
30-
},
31-
"services": {
32-
"vercel": "insert-TXT-string-you-got-from-vercel-here"
3330
}
3431
}
3532
```
3633

34+
> 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):
41+
42+
```json
43+
{
44+
"owner": {
45+
"username": "your-github-username",
46+
"email": "[email protected]"
47+
},
48+
"records": {
49+
"TXT": "insert-TXT-string-you-got-from-vercel-here"
50+
}
51+
}
52+
```
3753

3854
### Make a pull request
3955

40-
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`.
4157

4258
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.

src/useful/domain-structure.md

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ Note: Please refer to the [frequently asked questions](https://docs.is-a.dev/faq
231231
}
232232
}
233233
```
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`.
235235
```json
236236
"DS": [{
237237
"key_tag": 2371,
@@ -240,15 +240,6 @@ Note: Please refer to the [frequently asked questions](https://docs.is-a.dev/faq
240240
"digest": "C2074462471B81206F792AEC23469EF33DDC53538E8580DCCC92FD130C9A6096"
241241
}]
242242
```
243-
### `services` (*optional*)
244-
This section is for the verification records of certain services. Here is an example of all currently available options:
245-
```json
246-
"services": {
247-
"discord": "dh=examplestring123",
248-
"vercel": "vc-domain-verify=example.is-a.dev,example123",
249-
"bluesky": "did=did:plc:example123"
250-
}
251-
```
252243

253244
### `proxied` (*optional*)
254245
Enable Cloudflare proxy for your domain. This is disabled by default. To enable it, add this line of code:
@@ -261,7 +252,7 @@ Enable Cloudflare proxy for your domain. This is disabled by default. To enable
261252
```json
262253
"redirect_config": {
263254
"custom_paths": {
264-
"/github": "https://github.com/wdhdev"
255+
"/github": "https://github.com/is-a-dev"
265256
},
266257
"redirect_paths": true
267258
}

0 commit comments

Comments
 (0)