Skip to content

Commit 52a58f1

Browse files
committed
fixed tab labels
1 parent fba28d1 commit 52a58f1

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

articles/dns/dns-web-sites-custom-domain.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ In the left navigation of the App Services page in the Azure portal, select **Cu
9090

9191
### Create the record
9292

93-
# [Azure portal](#tab/azure-portal)
93+
# [Portal](#tab/azure-portal)
9494

9595
1. Navigate to your DNS zone in the Azure portal.
9696
1. Select **+ Record set**.
@@ -106,7 +106,7 @@ In the left navigation of the App Services page in the Azure portal, select **Cu
106106

107107
1. Select **OK** to create the record.
108108

109-
# [Azure PowerShell](#tab/azure-powershell)
109+
# [PowerShell](#tab/azure-powershell)
110110

111111
To create the A record, use:
112112

@@ -154,7 +154,7 @@ App Services uses this record only at configuration time to verify that you own
154154
> [!NOTE]
155155
> If you want to verify the domain name, but not route production traffic to the web app, you only need to specify the TXT record for the verification step. Verification does not require an A or CNAME record in addition to the TXT record.
156156
157-
# [Azure portal](#tab/azure-portal)
157+
# [Portal](#tab/azure-portal)
158158

159159
1. Navigate to your DNS zone in the Azure portal.
160160
1. Select **+ Record set**.
@@ -170,7 +170,7 @@ App Services uses this record only at configuration time to verify that you own
170170

171171
1. Select **OK** to create the record.
172172

173-
# [Azure PowerShell](#tab/azure-powershell)
173+
# [PowerShell](#tab/azure-powershell)
174174

175175
To create the TXT record, use:
176176

@@ -204,7 +204,7 @@ az network dns record-set txt add-record \
204204

205205
If your domain is already managed by Azure DNS (see [DNS domain delegation](dns-domain-delegation.md)), you can use the following example to create a CNAME record for contoso.azurewebsites.net. The CNAME created in this example has a "time to live" of 600 seconds in DNS zone named "contoso.com" with the alias for the web app contoso.azurewebsites.net.
206206

207-
# [Azure portal](#tab/azure-portal)
207+
# [Portal](#tab/azure-portal)
208208

209209
1. Navigate to your DNS zone in the Azure portal.
210210
1. Select **+ Record set**.
@@ -220,7 +220,7 @@ If your domain is already managed by Azure DNS (see [DNS domain delegation](dns-
220220

221221
1. Select **OK** to create the record.
222222

223-
# [Azure PowerShell](#tab/azure-powershell)
223+
# [PowerShell](#tab/azure-powershell)
224224

225225
```azurepowershell
226226
$cnameRecordParams = @{
@@ -311,7 +311,7 @@ contoso.com text =
311311

312312
Now, you can add the custom host names to your web app:
313313

314-
# [Azure portal](#tab/azure-portal)
314+
# [Portal](#tab/azure-portal)
315315

316316
1. Navigate to your web app in the Azure portal.
317317
1. In the left navigation under **Settings**, select **Custom domains**.
@@ -321,7 +321,7 @@ Now, you can add the custom host names to your web app:
321321
1. If validation is successful, select **Add custom domain**.
322322
1. Repeat steps 3-6 for each custom domain you want to add (both **contoso.com** and **www.contoso.com**).
323323

324-
# [Azure PowerShell](#tab/azure-powershell)
324+
# [PowerShell](#tab/azure-powershell)
325325

326326
```azurepowershell
327327
$webAppParams = @{
@@ -364,14 +364,14 @@ You should see the same page for both URLs. For example:
364364

365365
When no longer needed, you can delete all resources created in this tutorial by deleting the resource group **test-rg**:
366366

367-
# [Azure portal](#tab/azure-portal)
367+
# [Portal](#tab/azure-portal)
368368

369369
1. On the Azure portal menu, select **Resource groups**.
370370
1. Select the **test-rg** resource group.
371371
1. On the **Overview** page, select **Delete resource group**.
372372
1. Enter *test-rg* and select **Delete**.
373373

374-
# [Azure PowerShell](#tab/azure-powershell)
374+
# [PowerShell](#tab/azure-powershell)
375375

376376
```azurepowershell
377377
$resourceGroupParams = @{

0 commit comments

Comments
 (0)