Skip to content

Commit dfc99c9

Browse files
updates
1 parent f79a1ed commit dfc99c9

File tree

6 files changed

+33
-23
lines changed

6 files changed

+33
-23
lines changed

articles/static-web-apps/TOC.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,9 @@
5151
- name: Review pull requests in pre-production environments
5252
href: review-publish-pull-requests.md
5353
- name: Custom domains
54-
href: custom-domain.md
55-
- name: How-to guides
56-
items:
57-
- name: APIs
58-
items:
59-
- name: Add an API
60-
href: add-api.md
61-
- name: Bring your own functions
62-
href: functions-bring-your-own.md
63-
- name: Add a custom domain
6454
items:
55+
- name: About custom domains
56+
href: custom-domain.md
6557
- name: Use Azure DNS
6658
items:
6759
- name: Delegate your domain to Azure DNS
@@ -76,8 +68,16 @@
7668
href: custom-domain-external.md
7769
- name: Set up the apex domain
7870
href: apex-domain-external.md
79-
- name: Set up the apex domain
71+
- name: Manage the default domain
8072
href: custom-domain-default.md
73+
- name: How-to guides
74+
items:
75+
- name: APIs
76+
items:
77+
- name: Add an API
78+
href: add-api.md
79+
- name: Bring your own functions
80+
href: functions-bring-your-own.md
8181
- name: Security
8282
items:
8383
- name: Set up a private endpoint

articles/static-web-apps/apex-domain-azure-dns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.author: cshoe
1111

1212
# Set up an apex domain with Azure DNS in Azure Static Web Apps
1313

14-
Domain names without a subdomain are known as apex, root, or "naked" domains. For example, the domain `www.example.com` is the `www` subdomain joined with the `example.com` apex domain.
14+
Domain names without a subdomain are known as apex or root domains. For example, the domain `www.example.com` is the `www` subdomain joined with the `example.com` apex domain.
1515

1616
This guide demonstrates how to use `TXT` and `ALIAS` records to configure your apex domain in Azure DNS.
1717

articles/static-web-apps/apex-domain-external.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.author: cshoe
1111

1212
# Set up an apex domain in Azure Static Web Apps
1313

14-
Domain names without a subdomain are known as apex, root, or "naked" domains. For example, the domain `www.example.com` is the `www` subdomain joined with the `example.com` apex domain.
14+
Domain names without a subdomain are known as apex or root domains. For example, the domain `www.example.com` is the `www` subdomain joined with the `example.com` apex domain.
1515

1616
Some domain registrars (like Google and GoDaddy) don't allow you to point the apex domain to an existing URL. If your registrar doesn't support `ALIAS` or `ANAME` records, or doesn't allow `CNAME` flattening, then you can't point your apex domain to the generated URL for your static web app.
1717

articles/static-web-apps/azure-dns-zone.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The following procedure requires you to copy settings from an Azure DNS zone you
2121

2222
## Create an Azure DNS zone
2323

24-
1. Log in to the [Azure portal](https://portal.azure.com).
24+
1. Sign in to the [Azure portal](https://portal.azure.com).
2525

2626
1. From the top search bar, enter **DNS zones**.
2727

articles/static-web-apps/custom-domain-external.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ By default, Azure Static Web Apps provides an auto-generated domain name for you
1515

1616
## Preparation
1717

18-
Before you begin, consider how you want to support your apex domain. Domain names without a subdomain are known as apex, root, or "naked" domains. For example, the domain `www.example.com` is the `www` subdomain joined with the `example.com` apex domain.
18+
Before you begin, consider how you want to support your apex domain. Domain names without a subdomain are known as apex, root domains. For example, the domain `www.example.com` is the `www` subdomain joined with the `example.com` apex domain.
1919

2020
Setting up an apex domain is a common scenario to configure once your domain name is set up. Creating an apex domain is achieved by configuring an `ALIAS` or `ANAME` record or through `CNAME` flattening. Some domain registrars like GoDaddy and Google don't support these DNS records. If your domain registrar doesn't support the all the DNS records you need, consider using [Azure DNS to configure your domain](custom-domain-azure-dns.md).
2121

articles/static-web-apps/custom-domain.md

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,32 @@ By default, Azure Static Web Apps provides an auto-generated domain name for you
1515

1616
When you map a custom domain to a static web app, you have a few options available to you. You can configure subdomains and an apex domain.
1717

18-
Given the domain `www.example.com`, the `www` prefix is known as the subdomain, while the remaining segment of `example.com` is referred to as the apex domain.
18+
The following table includes links to articles that demonstrate how to configure a custom domain based provider type. <sup>1</sup>
1919

20-
As configure your domains, consider how you want to support your apex domain.
20+
| Action | Using... | Using... |
21+
|--|--|--|
22+
| Setup a domain with the `www` subdomain | [Azure DNS](custom-domain-azure-dns.md) | [External provider](custom-domain-external.md) |
23+
| Setup an apex domain | [Azure DNS](apex-domain-azure-dns.md) | [External provider](apex-domain-external.md) |
24+
25+
<sup>1</sup> Some registrars like GoDaddy and Google don't support domain records that affect how you configure your apex domain. Consider using Azure DNS with these registrars to setup your apex domain.
26+
27+
## About domains
2128

2229
Setting up an apex domain is a common scenario to configure once your domain name is set up. Creating an apex domain is achieved by configuring an `ALIAS` or `ANAME` record or through `CNAME` flattening. Some domain registrars like GoDaddy and Google don't support these DNS records. If your domain registrar doesn't support the all the DNS records you need, consider using [Azure DNS to configure your domain](custom-domain-azure-dns.md).
2330

2431
When setting up a custom domain, set up the `www` subdomain first, and then configure the apex domain.
2532

26-
## Configuring domains
33+
The following are terms you'll encounter as your set up a custom domain.
2734

28-
The following table includes links to articles that demonstrate how to configure a custom domain.
35+
* **Apex or root domains**: Given the domain `www.example.com`, the `www` prefix is known as the subdomain, while the remaining segment of `example.com` is referred to as the apex domain.
2936

30-
| Action | Using... | Using... |
31-
|--|--|--|
32-
| Setup a domain with the `www` subdomain | [Azure DNS](custom-domain-azure-dns.md) | [External provider](custom-domain-external.md) |
33-
| Setup an apex domain | [Azure DNS](apex-domain-azure-dns.md) | [External provider](apex-domain-external.md) |
37+
* **Domain registrar**: A registrar verifies the availability of a domain sells the rights to purchase a domain name.
38+
39+
* **DNS zone**: A Domain Name System (DNS) zone hosts the DNS records associated to a specific domain. There are a variety of records available which direct traffic for different purposes. For example, the domain `example.com` may contain several DNS records. One record handles traffic for `mail.example.com` (for a mail server), and another `www.contoso.com` (for a website).
40+
41+
* **DNS hosting**: A DNS host maintains DNS servers which resolve a domain name to a specific IP address.
42+
43+
* **Name server**: A name server is responsible for storing the DNS records for a domain.
3444

3545
## Next steps
3646

0 commit comments

Comments
 (0)