Skip to content

Commit 02c4f59

Browse files
Incorporated the feedback and updated the ms.date.
1 parent 98d74cb commit 02c4f59

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/container-apps/authentication.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: container-apps
55
author: craigshoemaker
66
ms.service: azure-container-apps
77
ms.topic: conceptual
8-
ms.date: 01/29/2025
8+
ms.date: 01/30/2025
99
ms.author: cshoe
1010
---
1111

@@ -105,7 +105,7 @@ In the [Azure portal](https://portal.azure.com), you can edit your container app
105105
With this option, you don't need to write any authentication code in your app. Finer authorization, such as role-specific authorization, can be handled by inspecting the user's claims (see [Access user claims](#access-user-claims-in-application-code)).
106106

107107
> [!CAUTION]
108-
> Restricting access in this way applies to all calls to your app, which m not be desirable for apps wanting a publicly available home page, as in many single-page applications.
108+
> Restricting access to your application applies to all requests to your app. These restrictions may not be preferable for apps with a publicly available web page, as is typical in many single-page applications.
109109
110110
> [!NOTE]
111111
> By default, any user in your Microsoft Entra tenant can request a token for your application from Microsoft Entra ID. You can [configure the application in Microsoft Entra ID](../active-directory/develop/howto-restrict-your-app-to-a-set-of-users.md) if you want to restrict access to your app to a defined set of users.
@@ -134,7 +134,7 @@ In the sign-in page, or the navigation bar, or any other location of your app, a
134134
When the user selects on one of the links, the UI for the respective providers is displayed to the user.
135135

136136
> [!WARNING]
137-
> For client-side apps, the client's route manager may intercept the `/.auth/login/` routes, preventing the auth side-car from being hit. Ensure your client-side routing configuration allows the server to process these routes.
137+
> For client-side apps, the client's route manager may intercept the `/.auth/login/` routes, preventing the auth side-car from receiving requests. Ensure your client-side routing configuration allows the server to process these routes.
138138
139139
To redirect the user post-sign-in to a custom URL, use the `post_login_redirect_uri` query string parameter (not to be confused with the Redirect URI in your identity provider configuration). For example, to navigate the user to `/Home/Index` after sign-in, use the following HTML code:
140140

0 commit comments

Comments
 (0)