Skip to content

Commit b2bdd97

Browse files
committed
acrolinx
1 parent 7145cc2 commit b2bdd97

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

articles/app-service/includes/configure-azure-storage/linux-container-pivot.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ This article covers three options for mounting your storage account:
2929

3030
Choose this option when mounting storage using the Azure portal. You can use the basic option as long as the storage account isn't using [service endpoints](../../../storage/common/storage-network-security.md#grant-access-from-a-virtual-network), [private endpoints](../../../storage/common/storage-private-endpoints.md), or [Azure Key Vault](../../../key-vault/general/overview.md). In this case, the portal gets and stores the access key for you.
3131

32-
If you plan to mount storage using the Azure CLI, you'll need to obtain an access key.
32+
If you plan to mount storage using the Azure CLI, you need to obtain an access key.
3333

3434
### [Access Key](#tab/access-key)
3535

@@ -75,16 +75,16 @@ Choose this option when using Azure Key Vault to securely store and retrieve acc
7575
- Mapping `/` or `/home` to custom-mounted storage isn't supported.
7676
- Don't map the storage mount to `/tmp` or its subdirectories as this action may cause a timeout during app startup.
7777
- Azure Storage isn't supported with [Docker Compose](../../configure-custom-container.md?pivots=container-linux#docker-compose-options) scenarios.
78-
- Storage mounts aren't included in [backups](../../manage-backup.md). Be sure to follow best practices to backup the Azure Storage accounts.
78+
- Storage mounts aren't included in [backups](../../manage-backup.md). Be sure to follow best practices to back up the Azure Storage accounts.
7979
- Azure Files [NFS](../../../storage/files/files-nfs-protocol.md) is currently unsupported for App Service on Linux. Only Azure Files [SMB](../../../storage/files/files-smb-protocol.md) are supported.
80-
- With VNET integration on your app, the mounted drive will use an RC1918 IP address and not an IP address from your VNET.
80+
- With VNET integration on your app, the mounted drive uses an RC1918 IP address and not an IP address from your VNET.
8181

8282
## Prepare for mounting
8383

8484

8585
### [Basic](#tab/basic)
8686

87-
No additional steps are required because the portal gets and stores the access key for you.
87+
No extra steps are required because the portal gets and stores the access key for you.
8888

8989
### [Access Key](#tab/access-key)
9090

@@ -186,7 +186,7 @@ az webapp config storage-account list --resource-group <resource-group> --name <
186186

187187
# [Azure CLI](#tab/cli/key-vault)
188188

189-
Mounting storage with Key Vault access isn't currently supported by the Azure CLI. Please use the portal instead.
189+
Mounting storage with Key Vault access isn't currently supported by the Azure CLI. Use the portal instead.
190190

191191
---
192192

@@ -213,7 +213,7 @@ To validate that the Azure Storage is mounted successfully for the app:
213213

214214
## Best practices
215215

216-
- To avoid latency issues, place the app and the Azure Storage account in the same region. Note that if you grant access from App Service IP addresses in the [Azure Storage firewall configuration](../../../storage/common/storage-network-security.md) when the app and Azure Storage account are in the same region, then these IP restrictions aren't honored.
216+
- To avoid latency issues, place the app and the Azure Storage account in the same region. If you grant access from App Service IP addresses in the [Azure Storage firewall configuration](../../../storage/common/storage-network-security.md) when the app and Azure Storage account are in the same region, then these IP restrictions aren't honored.
217217
218218
- The mount directory in the custom container should be empty. Any content stored at this path is deleted when the Azure Storage is mounted (if you specify a directory under `/home`, for example). If you are migrating files for an existing app, make a backup of the app and its content before you begin.
219219

articles/app-service/includes/configure-azure-storage/windows-code-pivot.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.author: msangapu
1010
> Azure Key Vault support for Azure Storage is in preview.
1111
>
1212
13-
This guide shows how to mount Azure Storage Files as a network share in Windows code (non-container) in App Service. Only [Azure Files Shares](../../../storage/files/storage-how-to-use-files-portal.md) and [Premium Files Shares](../../../storage/files/storage-how-to-create-file-share.md) are supported. Azure Storage is non-default storage for App Service and billed separately.
13+
This guide shows how to mount Azure Storage Files as a network share in Windows code (noncontainer) in App Service. Only [Azure Files Shares](../../../storage/files/storage-how-to-use-files-portal.md) and [Premium Files Shares](../../../storage/files/storage-how-to-create-file-share.md) are supported. Azure Storage is nondefault storage for App Service and billed separately.
1414

1515
The benefits of custom-mounted storage include:
1616
- Configure persistent storage for your App Service app and manage the storage separately.
@@ -30,7 +30,7 @@ This article covers three options for mounting your storage account:
3030

3131
Choose this option when mounting storage using the Azure portal. You can use the basic option as long as the storage account isn't using [service endpoints](../../../storage/common/storage-network-security.md#grant-access-from-a-virtual-network), [private endpoints](../../../storage/common/storage-private-endpoints.md), or [Azure Key Vault](../../../key-vault/general/overview.md). In this case, the portal gets and stores the access key for you.
3232

33-
If you plan to mount storage using the Azure CLI, you'll need to obtain an access key.
33+
If you plan to mount storage using the Azure CLI, you need to obtain an access key.
3434

3535
### [Access Key](#tab/access-key)
3636

@@ -73,14 +73,14 @@ Choose this option when using Azure Key Vault to securely store and retrieve acc
7373
- Azure blobs aren't supported when configuring Azure storage mounts for Windows code apps deployed to App Service.
7474
- FTP/FTPS access to mounted storage isn't supported (use [Azure Storage Explorer](https://azure.microsoft.com/features/storage-explorer/)).
7575
- Mapping `/mounts`, `mounts/foo/bar`, `/`, and `/mounts/foo.bar/` to custom-mounted storage isn't supported (you can only use /mounts/pathname for mounting custom storage to your web app.)
76-
- Storage mounts aren't included in [backups](../../manage-backup.md). Be sure to follow best practices to backup Azure Storage accounts.
76+
- Storage mounts aren't included in [backups](../../manage-backup.md). Be sure to follow best practices to back up Azure Storage accounts.
7777
- With VNET integration on your app, the mounted drive uses an RC1918 IP address and not an IP address from your VNET.
7878
-
7979
- ## Prepare for mounting
8080

8181
### [Basic](#tab/basic)
8282

83-
No additional steps are required because the portal gets and stores the access key for you.
83+
No extra steps are required because the portal gets and stores the access key for you.
8484

8585
### [Access Key](#tab/access-key)
8686

@@ -179,7 +179,7 @@ az webapp config storage-account list --resource-group <resource-group> --name <
179179

180180
# [Azure CLI](#tab/cli/key-vault)
181181

182-
Mounting storage with Key Vault access isn't currently supported by the Azure CLI. Please use the portal instead.
182+
Mounting storage with Key Vault access isn't currently supported by the Azure CLI. Use the portal instead.
183183

184184
---
185185

articles/app-service/includes/configure-azure-storage/windows-container-pivot.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.author: msangapu
1010
> Azure Key Vault support for Azure Storage is in preview.
1111
>
1212
13-
This guide shows how to mount Azure Storage Files as a network share in a Windows container in App Service. Only [Azure Files Shares](../../../storage/files/storage-how-to-use-files-portal.md) and [Premium Files Shares](../../../storage/files/storage-how-to-create-file-share.md) are supported. Azure Storage is non-default storage for App Service and billed separately.
13+
This guide shows how to mount Azure Storage Files as a network share in a Windows container in App Service. Only [Azure Files Shares](../../../storage/files/storage-how-to-use-files-portal.md) and [Premium Files Shares](../../../storage/files/storage-how-to-create-file-share.md) are supported. Azure Storage is nondefault storage for App Service and billed separately.
1414

1515
The benefits of custom-mounted storage include:
1616
- Configure persistent storage for your App Service app and manage the storage separately.
@@ -32,7 +32,7 @@ This article covers three options for mounting your storage account:
3232

3333
Choose this option when mounting storage using the Azure portal. You can use the basic option as long as the storage account isn't using [service endpoints](../../../storage/common/storage-network-security.md#grant-access-from-a-virtual-network), [private endpoints](../../../storage/common/storage-private-endpoints.md), or [Azure Key Vault](../../../key-vault/general/overview.md). In this case, the portal gets and stores the access key for you.
3434

35-
If you plan to mount storage using the Azure CLI, you'll need to obtain an access key.
35+
If you plan to mount storage using the Azure CLI, you need to obtain an access key.
3636

3737
### [Access Key](#tab/access-key)
3838

@@ -82,7 +82,7 @@ Choose this option when using Azure Key Vault to securely store and retrieve acc
8282

8383
### [Basic](#tab/basic)
8484

85-
No additional steps are required because the portal gets and stores the access key for you.
85+
No extra steps are required because the portal gets and stores the access key for you.
8686

8787
### [Access Key](#tab/access-key)
8888

@@ -181,7 +181,7 @@ az webapp config storage-account list --resource-group <resource-group> --name <
181181

182182
# [Azure CLI](#tab/cli/key-vault)
183183

184-
Mounting storage with Key Vault access isn't currently supported by the Azure CLI. Please use the portal instead.
184+
Mounting storage with Key Vault access isn't currently supported by the Azure CLI. Use the portal instead.
185185

186186
---
187187

0 commit comments

Comments
 (0)