Skip to content

Commit 777f4ad

Browse files
committed
Bug 157574
1 parent 78d48c0 commit 777f4ad

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

learn-pr/wwl-azure/introduction-to-azure-app-service/includes/6-network-features.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ There are two main deployment types for Azure App Service:
99

1010
Azure App Service is a distributed system. The roles that handle incoming HTTP or HTTPS requests are called *front ends*. The roles that host the customer workload are called *workers*. All the roles in an App Service deployment exist in a multitenant network. Because there are many different customers in the same App Service scale unit, you can't connect the App Service network directly to your network.
1111

12-
Instead of connecting the networks, you need features to handle the various aspects of application communication. The features that handle requests to your app can't be used to solve problems when you're making calls from your app. Likewise, the features that solve problems for calls from your app can't be used to solve problems to your app.
12+
Instead of directly connecting the networks, App Service provides networking features for different aspects of application communication. Inbound features control traffic coming to your app, and outbound features govern connections your app makes to external endpoints. Use inbound features to solve inbound problems and outbound features to solve outbound problems.
1313

1414
| Inbound features | Outbound features |
1515
|--|--|
@@ -45,7 +45,7 @@ You can find the same information by running the following Azure CLI command in
4545
```bash
4646
az webapp show \
4747
--resource-group <group_name> \
48-
--name <app_name> \
48+
--name <app_name> \
4949
--query outboundIpAddresses \
5050
--output tsv
5151
```
@@ -54,8 +54,8 @@ To find all possible outbound IP addresses for your app, regardless of pricing t
5454

5555
```bash
5656
az webapp show \
57-
--resource-group <group_name> \
58-
--name <app_name> \
57+
--resource-group <group_name> \
58+
--name <app_name> \
5959
--query possibleOutboundIpAddresses \
6060
--output tsv
6161
```

0 commit comments

Comments
 (0)