You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/app-service/includes/configure-azure-storage/linux-container-pivot.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ This article covers three options for mounting your storage account:
29
29
30
30
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.
31
31
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.
33
33
34
34
### [Access Key](#tab/access-key)
35
35
@@ -75,16 +75,16 @@ Choose this option when using Azure Key Vault to securely store and retrieve acc
75
75
- Mapping `/` or `/home` to custom-mounted storage isn't supported.
76
76
- Don't map the storage mount to `/tmp` or its subdirectories as this action may cause a timeout during app startup.
77
77
- 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.
79
79
- 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.
81
81
82
82
## Prepare for mounting
83
83
84
84
85
85
### [Basic](#tab/basic)
86
86
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.
88
88
89
89
### [Access Key](#tab/access-key)
90
90
@@ -186,7 +186,7 @@ az webapp config storage-account list --resource-group <resource-group> --name <
186
186
187
187
# [Azure CLI](#tab/cli/key-vault)
188
188
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.
190
190
191
191
---
192
192
@@ -213,7 +213,7 @@ To validate that the Azure Storage is mounted successfully for the app:
213
213
214
214
## Best practices
215
215
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.
217
217
218
218
- 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.
Copy file name to clipboardExpand all lines: articles/app-service/includes/configure-azure-storage/windows-code-pivot.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ ms.author: msangapu
10
10
> Azure Key Vault support for Azure Storage is in preview.
11
11
>
12
12
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.
14
14
15
15
The benefits of custom-mounted storage include:
16
16
- 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:
30
30
31
31
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.
32
32
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.
34
34
35
35
### [Access Key](#tab/access-key)
36
36
@@ -73,14 +73,14 @@ Choose this option when using Azure Key Vault to securely store and retrieve acc
73
73
- Azure blobs aren't supported when configuring Azure storage mounts for Windows code apps deployed to App Service.
- 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.
77
77
- With VNET integration on your app, the mounted drive uses an RC1918 IP address and not an IP address from your VNET.
78
78
-
79
79
-## Prepare for mounting
80
80
81
81
### [Basic](#tab/basic)
82
82
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.
84
84
85
85
### [Access Key](#tab/access-key)
86
86
@@ -179,7 +179,7 @@ az webapp config storage-account list --resource-group <resource-group> --name <
179
179
180
180
# [Azure CLI](#tab/cli/key-vault)
181
181
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.
Copy file name to clipboardExpand all lines: articles/app-service/includes/configure-azure-storage/windows-container-pivot.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ ms.author: msangapu
10
10
> Azure Key Vault support for Azure Storage is in preview.
11
11
>
12
12
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.
14
14
15
15
The benefits of custom-mounted storage include:
16
16
- 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:
32
32
33
33
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.
34
34
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.
36
36
37
37
### [Access Key](#tab/access-key)
38
38
@@ -82,7 +82,7 @@ Choose this option when using Azure Key Vault to securely store and retrieve acc
82
82
83
83
### [Basic](#tab/basic)
84
84
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.
86
86
87
87
### [Access Key](#tab/access-key)
88
88
@@ -181,7 +181,7 @@ az webapp config storage-account list --resource-group <resource-group> --name <
181
181
182
182
# [Azure CLI](#tab/cli/key-vault)
183
183
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.
0 commit comments