Skip to content

Commit ba58dec

Browse files
committed
Start Docs
1 parent f861ff8 commit ba58dec

15 files changed

+123
-493
lines changed

docs/tutorial-basics/_category_.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"label": "Tutorial - Basics",
3-
"position": 2,
3+
"position": 1,
44
"link": {
55
"type": "generated-index",
6-
"description": "5 minutes to learn the most important Docusaurus concepts."
6+
"description": "Lets get started"
77
}
88
}

docs/tutorial-basics/congratulations.md

-23
This file was deleted.

docs/tutorial-basics/create-a-blog-post.md

-34
This file was deleted.

docs/tutorial-basics/create-a-document.md

-57
This file was deleted.

docs/tutorial-basics/create-a-page.md

-43
This file was deleted.

docs/tutorial-basics/deploy-your-site.md

-31
This file was deleted.

docs/tutorial-basics/dns.md

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
---
2+
sidebar_position: 1
3+
title: Understanding DNS
4+
---
5+
6+
# Understanding DNS Record Types
7+
8+
DNS (Domain Name System) is essential for translating domain names into IP addresses, enabling browsers to find websites. Here's a quick guide to different DNS record types you might encounter:
9+
10+
## **A Record**
11+
12+
- **Purpose**: Maps a domain name to an IPv4 address.
13+
- **Example**: `example.com``192.0.2.1`
14+
15+
## **AAAA Record**
16+
17+
- **Purpose**: Maps a domain name to an IPv6 address.
18+
- **Example**: `example.com``2001:db8::1`
19+
20+
## **CNAME Record**
21+
22+
- **Purpose**: Alias for another domain name. It points one domain name to another.
23+
- **Example**: `www.example.com``example.com`
24+
25+
## **MX Record**
26+
27+
- **Purpose**: Specifies the mail servers responsible for receiving emails for the domain.
28+
- **Example**: `example.com``mail.example.com`
29+
30+
## **TXT Record**
31+
32+
- **Purpose**: Stores text-based information related to the domain, often used for verification and security purposes.
33+
- **Example**: `example.com``"v=spf1 include:_spf.example.com ~all"`
34+
35+
## **SRV Record**
36+
37+
- **Purpose**: Defines the location of servers for specific services, like VoIP or instant messaging.
38+
- **Example**: `_sip._tcp.example.com``sipserver.example.com`
39+
40+
41+
## **CAA Record**
42+
43+
- **Purpose**: Specifies which certificate authorities (CAs) are allowed to issue certificates for the domain.
44+
- **Example**: `example.com``0 issue "letsencrypt.org"`
45+
46+
## What's next?
47+
48+
- Learn more about [DNS record management](https://example.com/dns-management).
49+
- Explore [advanced DNS configurations](https://example.com/advanced-dns).
50+
- Join the [DNS community](https://example.com/dns-community) for support and discussions.
51+

0 commit comments

Comments
 (0)