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
#customer intent: As an App Service developer, I want to configure network settings for my App Service environments, so I can control FTP access, private endpoint creation, and remote debugging.
11
+
#customer intent: As an App Service developer, I want to configure networking settings for my App Service environments, so I can control FTP access, private endpoint creation, and remote debugging.
12
12
---
13
13
14
14
# Configure networking settings for App Service Environments
@@ -19,9 +19,9 @@ App Service Environment v3 provides a fully isolated and dedicated environment f
19
19
20
20
- An App Service Environment v3. To create a new environment, follow the steps in [Quickstart: Create an App Service Environment](creation.md).
21
21
22
-
## Review network settings
22
+
## Review networking settings
23
23
24
-
The App Service Environment network settings are located in a single ARM template subresource:
24
+
The App Service Environment networking settings are located in a single ARM template subresource:
@@ -35,7 +35,7 @@ All of the properties are of type `bool` and are set to false (disabled) by defa
35
35
36
36
## Use ARM template for repeatable deployment
37
37
38
-
When you configure network settings for an App Service Environment by using an ARM template, you create a configuration that's available for repeatable deployment of the same environment or other App Service Environments.
38
+
When you configure networking settings for an App Service Environment by using an ARM template, you create a configuration that's available for repeatable deployment of the same environment or other App Service Environments.
39
39
40
40
The following snippet shows an abbreviated ARM template with configurations for the networking settings:
Copy file name to clipboardExpand all lines: articles/app-service/environment/how-to-create-from-template.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -84,8 +84,8 @@ The following table describes the core properties and other options you can use
84
84
| `upgradePreference` | No | Specify your preference for automatic upgrades. There are four possible values:<br> - `None`: (Default) Upgrade automatically during the upgrade process for the region.<br> - `Early`: Upgrade automatically with a high prioritization compared with other resources in the region.<br> - `Late`: Upgrade automatically with a low prioritization compared with other resources in the region.<br> - `Manual`: Receive a notification when an upgrade is available, and start the process within 15 days. After 15 days, the upgrade occurs with other automatic upgrades in the region.<br> For more information, see [Upgrade preference for App Service Environment planned maintenance](how-to-upgrade-preference.md). |
85
85
| `clusterSettings` | No | Customize the behavior of the App Service Environment. For more information, see [Custom configuration settings for App Service Environments](app-service-app-service-environment-custom-settings.md). |
86
86
| `networkingConfiguration` -> `allowNewPrivateEndpointConnections` | No | Specify whether to allow creation of a new private endpoint connection for an ILB App Service Environment or External App Service Environment. By default, the option is disabled. For more information, see [Network configuration settings > Allow new private endpoint connections](configure-network-settings.md#allow-new-private-endpoint-connections). |
87
-
| `networkingConfiguration` -> `remoteDebugEnabled` | No | Specify whether to enable remote debugging for the App Service Environment. By default, the option is disabled. For more information, see [Network configuration settings > Remote debugging access](configure-network-settings.md#remote-debugging-access). |
88
-
| `networkingConfiguration` -> `ftpEnabled` | No | Specify whether to allow FTP connections to the App Service Environment. By default, the option is disabled. For more information, see [Network configuration settings > FTP access](configure-network-settings.md#ftp-access). |
87
+
| `networkingConfiguration` -> `remoteDebugEnabled` | No | Specify whether to enable remote debugging for the App Service Environment. By default, the option is disabled. For more information, see [Configure networking settings > Enable remote debugging](configure-network-settings.md#enable-remote-debugging). |
88
+
| `networkingConfiguration` -> `ftpEnabled` | No | Specify whether to allow FTP connections to the App Service Environment. By default, the option is disabled. For more information, see [Configure networking settings > Allow incoming FTP connections](configure-network-settings.md#allow-incoming-ftp-connections). |
89
89
| `networkingConfiguration` -> `inboundIpAddressOverride` | No | Use this setting to create an App Service Environment with your own Azure Public IP address (specify the resource ID) or define a static IP for ILB deployments. This setting can't be changed after the App Service Environment is created. |
90
90
| `customDnsSuffixConfiguration` | No | Use this setting to specify a custom domain suffix for the App Service Environment. For more information about the specific parameters, see [Custom domain suffix for App Service Environments](how-to-custom-domain-suffix.md).<br> **Important**: To set this option, you must have an existing key vault, a valid certificate secret from Azure Key Vault, and access with a managed identity for Azure resources through Microsoft Entra ID. |
Copy file name to clipboardExpand all lines: articles/app-service/environment/networking.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -228,7 +228,7 @@ For FTP access to Internal Load balancer (ILB) App Service Environment v3 specif
228
228
1. Create an Azure DNS private zone named `ftp.appserviceenvironment.net`.
229
229
1. Create an A record in that zone that points `<App Service Environment-name>` to the inbound IP address.
230
230
231
-
In addition to setting up DNS, you also need to enable it in the [App Service Environment configuration](./configure-network-settings.md#ftp-access) and at the [app level](../deploy-ftp.md?tabs=cli#enforce-ftps).
231
+
In addition to setting up DNS, you also need to enable it in the [App Service Environment - Configure networking settings](./configure-network-settings.md#allow-incoming-ftp-connections) and at the [app level](../deploy-ftp.md?tabs=cli#enforce-ftps).
232
232
233
233
### DNS configuration from your App Service Environment
0 commit comments