Skip to content

Commit 35c5f0d

Browse files
committed
updates
1 parent 5665ed2 commit 35c5f0d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/api-management/api-management-howto-mutual-certificates.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.date: 05/19/2025
1111
ms.author: danlep
1212
ms.custom: devx-track-azurepowershell, engagement-fy23
1313

14-
#customer intent: As an API developer, I want to sucure backend services by using client certificate authentication.
14+
#customer intent: As an API developer, I want to secure backend services by using client certificate authentication.
1515
---
1616

1717
# Secure backend services by using client certificate authentication in Azure API Management
@@ -78,15 +78,15 @@ After the certificate is uploaded, it shows in the **Certificates** window. If y
7878
If you're using self-signed certificates, you need to disable certificate chain validation to enable API Management to communicate with the backend system. Otherwise you'll get a 500 error code. To disable this validation, you can use the [`New-AzApiManagementBackend`](/powershell/module/az.apimanagement/new-azapimanagementbackend) (for a new backend) or [`Set-AzApiManagementBackend`](/powershell/module/az.apimanagement/set-azapimanagementbackend) (for an existing backend) PowerShell cmdlets and set the `-SkipCertificateChainValidation` parameter to `True`:
7979

8080
```powershell
81-
$context = New-AzApiManagementContext -resourcegroup 'ContosoResourceGroup' -servicename 'ContosoAPIMService'
81+
$context = New-AzApiManagementContext -ResourceGroupName 'ContosoResourceGroup' -ServiceName 'ContosoAPIMService'
8282
New-AzApiManagementBackend -Context $context -Url 'https://contoso.com/myapi' -Protocol http -SkipCertificateChainValidation $true
8383
```
8484

8585
You can also disable certificate chain validation by using the [Backend](/rest/api/apimanagement/current-ga/backend) REST API.
8686

8787
## Delete a client certificate
8888

89-
To delete a certificate, select it and then select **Delete** in the **...** menu.
89+
To delete a certificate, select **Delete** on the ellipsis (**...**) menu.
9090

9191
:::image type="content" source="media/api-management-howto-mutual-certificates/apim-client-cert-delete-new.png" alt-text="Delete a certificate":::
9292

0 commit comments

Comments
 (0)