Skip to content

Commit d02bf27

Browse files
Address blocking issues.
1 parent d13babb commit d02bf27

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

articles/app-service/app-service-plan-manage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ You can create an empty App Service plan, or you can create a plan as part of ap
3636
6. Select **Review + create** to create the App Service plan.
3737

3838
> [!IMPORTANT]
39-
> When you create an new App Service plan in an existing resource group, certain conditions with existing apps can trigger these errors:
39+
> When you create a new App Service plan in an existing resource group, certain conditions with existing apps can trigger these errors:
4040
> - `The pricing tier is not allowed in this resource group`
4141
> - `<SKU_NAME> workers are not available in resource group <RESOURCE_GROUP_NAME>`
4242
>

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Create two records, as described in the following table:
108108

109109
| Record type | Host | Value | Comments |
110110
| - | - | - |-|
111-
| CNAME | `<subdomain>` (for example, `www`) | (See the value in the Azure portal in the **Overview** page for your app.) | The domain mapping itself. |
111+
| CNAME | `<subdomain>` (for example, `www`) | (See the value in the Azure portal **Overview** page for your app.) | The domain mapping itself. |
112112
| TXT | `asuid.<subdomain>` (for example, `asuid.www`) | The domain verification ID shown in the **Add custom domain** dialog. | App Service accesses the `asuid.<subdomain>` TXT record to verify your ownership of the custom domain. |
113113

114114
![Screenshot that shows the portal navigation to an Azure app.](./media/app-service-web-tutorial-custom-domain/cname-record.png)
@@ -119,7 +119,7 @@ For a wildcard name, like `*` in `*.contoso.com`, create two records, as describ
119119

120120
| Record type | Host | Value | Comments |
121121
| - | - | - | - |
122-
| CNAME | `*` | (See the value in the Azure portal in the **Overview** page for your app.) | The domain mapping itself. |
122+
| CNAME | `*` | (See the value in the Azure portal **Overview** page for your app.) | The domain mapping itself. |
123123
| 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. |
124124

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

articles/app-service/configure-common.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ App settings are always encrypted when they're stored (encrypted at rest).
5353
By default, values for app settings are hidden in the portal for security. To see a hidden value of an app setting, under **Value**, select **Show value**. To see the hidden values of all app settings, select **Show values**.
5454

5555
> [!NOTE]
56-
> Read/Write user permimssions are required to view this section in the Azure portal. RBAC built-in roles with sufficient permissions are Owner, Contributor, and Website Contributor. The Reader role alone would not be allowed to access this page.
56+
> Read/Write user permissions are required to view this section in the Azure portal. RBAC built-in roles with sufficient permissions are Owner, Contributor, and Website Contributor. The Reader role alone would not be allowed to access this page.
5757
5858
1. To add a new app setting, select **Add**. To edit a setting, select the setting.
5959
1. In the dialog, you can [stick the setting to the current slot](deploy-staging-slots.md#which-settings-are-swapped).

articles/app-service/configure-ssl-certificate.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ The free App Service managed certificate is a turn-key solution for helping to s
6767
>
6868
> Free certificates are issued by DigiCert. For some domains, you must explicitly allow DigiCert as a certificate issuer by creating a [CAA domain record](https://wikipedia.org/wiki/DNS_Certification_Authority_Authorization) with the value: `0 issue digicert.com`.
6969
>
70-
> Azure fully manages the certificates on your behalf, so any aspect of the managed certificate, including the root issuer, can change at anytime. Certificate renewals change both public and private key parts. All of these certificate changes are outside your control. Make sure to avoid hard dependencies and "pinning" practice certificates to the managed certificate or any part of the certificate hierarchy. If you need the certificate pinning behavior, add a certificate to your custom domain using any other available method in this article.
70+
> Azure fully manages the certificates on your behalf, so any aspect of the managed certificate, including the root issuer, can change at any time. Certificate renewals change both public and private key parts. All of these certificate changes are outside your control. Make sure to avoid hard dependencies and "pinning" practice certificates to the managed certificate or any part of the certificate hierarchy. If you need the certificate pinning behavior, add a certificate to your custom domain using any other available method in this article.
7171
7272
The free certificate comes with the following limitations:
7373

@@ -146,7 +146,7 @@ The service principal app ID or assignee value is the ID for the App Service res
146146

147147
| Resource provider | Service principal app ID | Key vault secret permissions | Key vault certificate permissions |
148148
|--|--|--|--|
149-
| **Microsoft Azure App Service** or **Microsoft.Azure.WebSites** | - `abfa0a7c-a6b6-4736-8310-5855508787cd` for public Azure cloud environment <br><br>- `6a02c803-dafd-4136-b4c3-5a6f318b4714` for Azure Government cloud environment | Get | Get |
149+
| **Microsoft Azure App Service** or **Microsoft.Azure.WebSites** | - `abfa0a7c-a6b6-4736-8310-5855508787cd` for global Azure cloud environment <br><br>- `6a02c803-dafd-4136-b4c3-5a6f318b4714` for Azure Government cloud environment | Get | Get |
150150

151151
The service principal app ID or assignee value is the ID for the App Service resource provider. To learn how to authorize key vault permissions for the App Service resource provider using an access policy, see the [assign a Key Vault access policy documentation](/azure/key-vault/general/assign-access-policy?tabs=azure-portal).
152152

articles/app-service/deploy-staging-slots.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ To add a routing rule on a slot and transfer 15% of production traffic to it, ru
422422
Add-AzWebAppTrafficRouting -ResourceGroupName "<group-name>" -WebAppName "<app-name>" -RoutingRule @{ActionHostName='<URL>';ReroutePercentage='15';Name='<slot-name>'}
423423
```
424424

425-
Get the URL for that deployment slote from the **Deployment slots** page in the Azure portal.
425+
Get the URL for that deployment slot from the **Deployment slots** page in the Azure portal.
426426

427427
For more information, see [Add-AzWebAppTrafficRouting](/powershell/module/az.websites/add-azwebapptrafficrouting). To update an existing rule, use [Update-AzWebAppTrafficRouting](/powershell/module/az.websites/update-azwebapptrafficrouting).
428428

0 commit comments

Comments
 (0)