Skip to content

Commit 8816dac

Browse files
committed
MicrosoftDocs/azure-docs#8136
1 parent cc075ba commit 8816dac

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

articles/app-service/app-service-local-cache-overview.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: Azure App Service Local Cache overview | Microsoft Docs
33
description: This article describes how to enable, resize, and query the status of the Azure App Service Local Cache feature
44
services: app-service
55
documentationcenter: app-service
6-
author: SyntaxC4
7-
manager: yochayk
6+
author: cephalin
7+
manager: jpconnock
88
editor: ''
99
tags: optional
1010
keywords: ''
@@ -16,10 +16,14 @@ ms.topic: article
1616
ms.tgt_pltfrm: na
1717
ms.workload: na
1818
ms.date: 03/04/2016
19-
ms.author: cfowler
19+
ms.author: cephalin
2020

2121
---
2222
# Azure App Service Local Cache overview
23+
24+
> [!NOTE]
25+
> Local cache is not supported in containerized App Service apps, such as on [App Service on Linux](containers/app-service-linux-intro.md).
26+
2327
Azure web app content is stored on Azure Storage and is surfaced up in a durable manner as a content share. This design is intended to work with a variety of apps and has the following attributes:
2428

2529
* The content is shared across multiple virtual machine (VM) instances of the web app.

articles/app-service/app-service-web-tutorial-auth-aad.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.workload: web
1313
ms.tgt_pltfrm: na
1414
ms.devlang: dotnet
1515
ms.topic: tutorial
16-
ms.date: 04/03/2018
16+
ms.date: 08/07/2018
1717
ms.author: cephalin
1818
---
1919

@@ -237,7 +237,7 @@ From the management page of the AD application, copy the **Application ID** to a
237237

238238
Follow the same steps for the front-end app, but skip the last step. You don't need the **Application ID** for the front-end app. Keep the **Azure Active Directory Settings** page open.
239239

240-
If you like, navigate to `http://<front_end_app_name>.azurewebsites.net`. It should now direct you to a sign-in page. After you sign in, you still can't access the data from the back-end app, because you still need to do three things:
240+
If you like, navigate to `http://<front_end_app_name>.azurewebsites.net`. It should now direct you to a secured sign-in page. After you sign in, you still can't access the data from the back-end app, because you still need to do three things:
241241

242242
- Grant the front end access to the back end
243243
- Configure App Service to return a usable token
@@ -318,7 +318,7 @@ git commit -m "add authorization header for server code"
318318
git push frontend master
319319
```
320320

321-
Sign in to `http://<front_end_app_name>.azurewebsites.net` again. At the user data usage agreement page, click **Accept**.
321+
Sign in to `https://<front_end_app_name>.azurewebsites.net` again. At the user data usage agreement page, click **Accept**.
322322

323323
You should now be able to create, read, update, and delete data from the back-end app as before. The only difference now is that both apps are now secured by App Service authentication and authorization, including the service-to-service calls.
324324

@@ -348,7 +348,7 @@ This step is not related to authentication and authorization. However, you need
348348

349349
In the local repository, open _wwwroot/index.html_.
350350

351-
In Line 51, set the `apiEndpoint` variable to the URL of your back-end app (`http://<back_end_app_name>.azurewebsites.net`). Replace _\<back\_end\_app\_name>_ with your app name in App Service.
351+
In Line 51, set the `apiEndpoint` variable to the URL of your back-end app (`https://<back_end_app_name>.azurewebsites.net`). Replace _\<back\_end\_app\_name>_ with your app name in App Service.
352352

353353
In the local repository, open _wwwroot/app/scripts/todoListSvc.js_ and see that `apiEndpoint` is prepended to all the API calls. Your Angular.js app is now calling the back-end APIs.
354354

@@ -402,7 +402,7 @@ git commit -m "add authorization header for Angular"
402402
git push frontend master
403403
```
404404

405-
Navigate to `http://<front_end_app_name>.azurewebsites.net` again. You should now be able to create, read, update, and delete data from the back-end app, directly in the Angular.js app.
405+
Navigate to `https://<front_end_app_name>.azurewebsites.net` again. You should now be able to create, read, update, and delete data from the back-end app, directly in the Angular.js app.
406406

407407
Congratulations! Your client code is now accessing the back-end data on behalf of the authenticated user.
408408

0 commit comments

Comments
 (0)