Skip to content

Commit

Permalink
test ci
Browse files Browse the repository at this point in the history
  • Loading branch information
chen.xiaojie 陳暁傑 committed May 11, 2024
1 parent 64dc0d5 commit 23cbea0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
git diff --name-only ${{ github.event.before }} ${{ github.event.after }} | while IFS= read -r file; do
echo "$file"
if [[ "$file" == *.md ]]; then
sed -i 's/:/: /g; s/(/(/g; s/)/)/g' "$file"
sed -i 's/:/: /g; s/(/ (/g; s/)/) /g' "$file"
fi
done
else
Expand Down
11 changes: 9 additions & 2 deletions 230. Cloud/Azure/10. Network/DNS/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
## DNS record types

- A(Address Record): 将域名或 host 名映射到一个 IP 地址。
- CNAME 记录(Canonical Name Record): 将域名指向另一个域名。
- AAAA(IPv6 Address Record):类似于 A 记录,用于 IPv6 地址解析。
- CNAME(Canonical Name Record): 将域名指向另一个域名。
- MX(Mail Exchanger Record): 让邮件发送到指定的邮箱服务器。
- MX(Mail Exchange): text record。Azure 和 Microsoft 365 用于验证域名的拥有权。[["]](https://learn.microsoft.com/zh/training/modules/host-domain-azure-dns/2-what-is-azure-dns)
- MX(Mail Exchange): text record。Azure 和 Microsoft 365 用于验证域名的拥有权。[["]](https://learn.microsoft.com/zh/training/modules/host-domain-azure-dns/2-what-is-azure-dns)
- NS (name server):用于解析特定域名的权威 DNS 服务器。它定义了域名的 DNS 服务器。
- SOA (start of authority):记录包含关于域名的授权信息,如域名的主 DNS 服务器、负责人电子邮件地址等。

## domain delegation

Changing the NS details is called *domain delegation*. When you delegate the domain, you must use all four name servers provided by Azure DNS.[["]](https://learn.microsoft.com/en-us/training/modules/host-domain-azure-dns/3-configure-azure-dns-host-domain)

0 comments on commit 23cbea0

Please sign in to comment.