Skip to content

Commit 9c821f5

Browse files
author
Cephas Lin
committed
fix broken link
1 parent ec25991 commit 9c821f5

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

articles/app-service/app-service-web-tutorial-custom-domain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ For a wildcard name like `*` in `*.contoso.com`, create two records according to
121121

122122
| Record type | Host | Value | Comments |
123123
| - | - | - | - |
124-
| CNAME | `*` | `<app-name>.azurewebsites.net` (see [note at top](./includes/regionalization-note.md#dnl-note)) | The domain mapping itself. |
124+
| CNAME | `*` | `<app-name>.azurewebsites.net` (see [note at top](#dnl-note)) | The domain mapping itself. |
125125
| TXT | `asuid` | The domain verification ID shown in the **Add custom domain** dialog. | App Service accesses the `asuid` TXT record to verify your ownership of the custom domain. |
126126

127127
![Screenshot that shows the navigation to an Azure app.](./media/app-service-web-tutorial-custom-domain/cname-record-wildcard.png)

articles/app-service/deploy-zip.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ This ZIP package deployment uses the same Kudu service that powers continuous in
3939
4040
#### With zip deploy UI in Kudu
4141

42-
In the browser, navigate to `https://<app_name>.scm.azurewebsites.net/ZipDeployUI` (see [note at top](./includes/regionalization-note.md#dnl-note)).
42+
In the browser, navigate to `https://<app_name>.scm.azurewebsites.net/ZipDeployUI` (see [note at top](#dnl-note)).
4343

4444
Upload the ZIP package you created in [Create a project ZIP package](#create-a-project-zip-package) by dragging it to the file explorer area on the web page.
4545

@@ -90,7 +90,7 @@ curl -X POST \
9090
```
9191

9292
> [!NOTE]
93-
> For the actual fully qualified domain name to use in the URL, see [note at top](./includes/regionalization-note.md#dnl-note)
93+
> For the actual fully qualified domain name to use in the URL, see [note at top](#dnl-note)
9494
9595
# [ARM template](#tab/arm)
9696

@@ -153,7 +153,7 @@ curl -X POST \
153153
```
154154

155155
> [!NOTE]
156-
> For the actual fully qualified domain name to use in the URL, see [note at top](./includes/regionalization-note.md#dnl-note)
156+
> For the actual fully qualified domain name to use in the URL, see [note at top](#dnl-note)
157157
158158
For more information, see [Kudu publish API reference](#kudu-publish-api-reference)
159159

@@ -218,7 +218,7 @@ curl -X POST \
218218
```
219219

220220
> [!NOTE]
221-
> For the actual fully qualified domain name to use in the URL, see [note at top](./includes/regionalization-note.md#dnl-note)
221+
> For the actual fully qualified domain name to use in the URL, see [note at top](#dnl-note)
222222
223223
### Deploy a library file
224224

@@ -241,7 +241,7 @@ curl -X POST \
241241
```
242242

243243
> [!NOTE]
244-
> For the actual fully qualified domain name to use in the URL, see [note at top](./includes/regionalization-note.md#dnl-note)
244+
> For the actual fully qualified domain name to use in the URL, see [note at top](#dnl-note)
245245
246246
### Deploy a static file
247247

@@ -264,7 +264,7 @@ curl -X POST \
264264
```
265265

266266
> [!NOTE]
267-
> For the actual fully qualified domain name to use in the URL, see [note at top](./includes/regionalization-note.md#dnl-note)
267+
> For the actual fully qualified domain name to use in the URL, see [note at top](#dnl-note)
268268
269269
# [ARM template](#tab/arm)
270270

@@ -313,7 +313,7 @@ curl -X POST \
313313
```
314314

315315
> [!NOTE]
316-
> For the actual fully qualified domain name to use in the URL, see [note at top](./includes/regionalization-note.md#dnl-note)
316+
> For the actual fully qualified domain name to use in the URL, see [note at top](#dnl-note)
317317
318318
# [ARM template](#tab/arm)
319319

articles/app-service/includes/regionalization-note.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.date: 04/22/2024
1010
> [!NOTE]
1111
> Beginning April 22, 2024, all newly created App Service apps will have the option to create a unique default hostname with a naming convention of `<app-name>`-`<random-hash>`.`<region>`.`azurewebsites.net`. The names of existing apps will not change.
1212
>
13-
>Example: myapp-ds27dh7271aah175.westus-01.azurewebsites.net
13+
> Example: myapp-ds27dh7271aah175.westus-01.azurewebsites.net
1414
>
15-
>For more information, refer to [Unique Default Hostname for App Service Resource](https://go.microsoft.com/fwlink/?linkid=2265728).
15+
> For more information, refer to [Unique Default Hostname for App Service Resource](https://go.microsoft.com/fwlink/?linkid=2265728).
1616
>

articles/app-service/includes/tutorial-set-up-app-service-authentication/after.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ When you enabled the App Service authentication/authorization module in the prev
154154
1. Select the app registration that was created.
155155
1. In the overview, verify that **Supported account types** is set to **My organization only**.
156156

157-
1. To verify that access to your app is limited to users in your organization, go to your web app **Overview** and select the **Default domain** link. Or, start a browser in incognito or private mode and go to `https://<app-name>.azurewebsites.net` (see [note at top](../regionalization-note.md#dnl-note)).
157+
1. To verify that access to your app is limited to users in your organization, go to your web app **Overview** and select the **Default domain** link. Or, start a browser in incognito or private mode and go to `https://<app-name>.azurewebsites.net` (see [note at top](#dnl-note)).
158158

159159
:::image type="content" alt-text="Screenshot that shows verifying access." source="../../media/scenario-secure-app-authentication-app-service/verify-access.png":::
160160

articles/app-service/overview-private-endpoint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ In the Web HTTP logs of your app, you find the client source IP. This feature is
5555

5656
## DNS
5757

58-
When you use private endpoint for App Service apps, the requested URL must match the name of your app. By default mywebappname.azurewebsites.net (see [note at top](./includes/regionalization-note.md#dnl-note)).
58+
When you use private endpoint for App Service apps, the requested URL must match the name of your app. By default mywebappname.azurewebsites.net (see [note at top](#dnl-note)).
5959

6060
By default, without private endpoint, the public name of your web app is a canonical name to the cluster.
6161
For example, the name resolution is:

0 commit comments

Comments
 (0)