Skip to content

Commit 3a4d123

Browse files
committed
updates
1 parent a6e923a commit 3a4d123

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

articles/app-service/app-service-web-configure-tls-mutual-auth.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,16 @@ ms.topic: how-to
99
ms.date: 05/09/2025
1010
ms.devlang: csharp
1111
ms.custom: devx-track-csharp, devx-track-extended-java, devx-track-js, devx-track-python
12+
13+
#customer intent: As a developer, I want to set up mutual authentication so that I can restrict access to an App Service app.
1214
---
1315

1416
# Configure TLS mutual authentication in Azure App Service
1517

16-
You can restrict access to your Azure App Service app by enabling different types of authentication for the app. One way to set up authentication is to request a client certificate when the client request is sent by using Transport Layer Security (TLS)/Secure Sockets Layer (SSL) and to validate the certificate. This mechanism is called *mutual authentication* or *client certificate authentication*. This article shows you how to set up your app to use client certificate authentication.
18+
You can restrict access to your Azure App Service app by enabling various types of authentication for the app. One way to set up authentication is to request a client certificate when the client request is sent by using Transport Layer Security (TLS) / Secure Sockets Layer (SSL) and to validate the certificate. This mechanism is called *mutual authentication* or *client certificate authentication*. This article shows how to set up your app to use client certificate authentication.
1719

1820
> [!NOTE]
19-
> Your app code is responsible for validating the client certificate. App Service doesn't do anything with this client certificate other than forward it to your app.
21+
> Your app code must validate the client certificate. App Service doesn't do anything with the client certificate other than forward it to your app.
2022
>
2123
> If you access your site over HTTP and not HTTPS, you don't receive any client certificates. If your application requires client certificates, you shouldn't allow requests to your application over HTTP.
2224

includes/app-service-ssl-prepare-app.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,15 @@ ms.custom: "include file"
1010

1111
## Prepare your web app
1212

13-
To create custom TLS/SSL bindings or to enable client certificates for your App Service app, your [App Service plan](https://azure.microsoft.com/pricing/details/app-service/) must be in the Basic, Standard, Premium, or Isolated tiers.
13+
If you want to create custom TLS/SSL bindings or to enable client certificates for your App Service app, your [App Service plan](https://azure.microsoft.com/pricing/details/app-service/) must be in the Basic, Standard, Premium, or Isolated tiers.
1414

1515
To make sure that your web app is in the supported pricing tier:
1616

1717
### Go to your web app
1818

1919
1. In the [Azure portal](https://portal.azure.com) search box, enter **App Services** and then select it in the search results.
2020

21-
:::image type="content" source="./media/app-service-ssl-prepare-app/app-services.png" alt-text="Screenshot of the Azure portal search box and App Services selected.":::
22-
23-
1. On the **App Services** pane, select your web app name.
21+
1. On the **App Services** page, select your web app name:
2422

2523
:::image type="content" source="./media/app-service-ssl-prepare-app/select-app-service.png" alt-text="Screenshot of the App Services pane in the Azure portal showing a list of all running web apps, with the first app in the list highlighted.":::
2624

0 commit comments

Comments
 (0)