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
- content: "What are the benefits of using Application Gateway to help protect traffic sent to or from your applications?"
18
-
choices:
19
-
- content: "Application Gateway can implement an SSL connection with clients. There's no need to encrypt data sent from the gateway to the servers running your application."
20
-
isCorrect: false
21
-
explanation: "No. Although Application Gateway can use SSL to help protect communications with clients, you still need to encrypt data that passes between Application Gateway and the servers running your application."
22
-
- content: "Application Gateway can implement an SSL connection with clients. Application Gateway can also implement an SSL connection with the servers running your application."
23
-
isCorrect: true
24
-
explanation: "This answer is correct."
25
-
- content: "Application Gateway doesn't require an SSL connection with clients. All encryption is carried out by the connection with the servers running your application."
26
-
isCorrect: false
27
-
explanation: "No. You should configure Application Gateway to use SSL to communicate with clients and for connecting to the servers running your application."
28
-
- content: "Application Gateway automatically protects the communications between clients and the servers running your application. You don't need to do any additional configuration."
29
-
isCorrect: false
30
-
explanation: "No. You must configure SSL for incoming requests from clients to Application Gateway, and for traffic transmitted between Application Gateway and the servers running your application."
31
-
- content: "Which of the following can't be placed in the backend pool of an application gateway?"
32
-
choices:
33
-
- content: "Azure App Service"
34
-
isCorrect: false
35
-
explanation: "Azure App Service can be placed in a backend pool."
36
-
- content: "Azure virtual machines"
37
-
isCorrect: false
38
-
explanation: "Azure virtual machines can be placed in a backend pool."
39
-
- content: "Azure Cosmos DB"
40
-
isCorrect: true
41
-
explanation: "Correct. Azure Cosmos DB can't be placed in a backend pool."
42
-
- content: "Azure virtual machine scale sets"
43
-
isCorrect: false
44
-
explanation: "Azure virtual machine scale sets can be placed in a backend pool."
- content: "What are the benefits of using Application Gateway to help protect traffic sent to or from your applications?"
18
+
choices:
19
+
- content: "Application Gateway can implement an SSL connection with clients. There's no need to encrypt data sent from the gateway to the servers running your application."
20
+
isCorrect: false
21
+
explanation: "No. Although Application Gateway can use SSL to help protect communications with clients, you still need to encrypt data that passes between Application Gateway and the servers running your application."
22
+
- content: "Application Gateway can implement an SSL connection with clients. Application Gateway can also implement an SSL connection with the servers running your application."
23
+
isCorrect: true
24
+
explanation: "This answer is correct."
25
+
- content: "Application Gateway doesn't require an SSL connection with clients. All encryption is carried out by the connection with the servers running your application."
26
+
isCorrect: false
27
+
explanation: "No. You should configure Application Gateway to use SSL to communicate with clients and for connecting to the servers running your application."
28
+
- content: "Application Gateway automatically protects the communications between clients and the servers running your application. You don't need to do any additional configuration."
29
+
isCorrect: false
30
+
explanation: "No. You must configure SSL for incoming requests from clients to Application Gateway, and for traffic transmitted between Application Gateway and the servers running your application."
31
+
- content: "Which of the following can't you place in the backend pool of an application gateway?"
32
+
choices:
33
+
- content: "Azure App Service"
34
+
isCorrect: false
35
+
explanation: "You can place Azure App Service in a backend pool."
36
+
- content: "Azure virtual machines"
37
+
isCorrect: false
38
+
explanation: "You can place Azure virtual machines in a backend pool."
39
+
- content: "Azure Cosmos DB"
40
+
isCorrect: true
41
+
explanation: "Correct. You can't place Azure Cosmos DB in a backend pool."
42
+
- content: "Azure virtual machine scale sets"
43
+
isCorrect: false
44
+
explanation: "You can place Azure virtual machine scale sets in a backend pool."
Copy file name to clipboardExpand all lines: learn-pr/azure/end-to-end-encryption-with-app-gateway/includes/3-configure-backend-pools-for-encryption.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
@@ -67,4 +67,4 @@ az network application-gateway http-settings create \
67
67
--auth-certs <certificate name>
68
68
```
69
69
70
-
If you're using Application Gateway v2, omit the `--auth-certs` parameter. Application Gateway contacts the backend server. It verifies the authenticity of the certificate presented by the server against the CAs specified by a list of trusted root certificates. If there's no match, Application Gateway won't connect to the backend server and will fail with an HTTP 502 (Bad Gateway) error.
70
+
If you're using Application Gateway v2, omit the `--auth-certs` parameter. Application Gateway contacts the backend server. It verifies the authenticity of the certificate the server provides against the CAs specified by a list of trusted root certificates. If there's no match, Application Gateway won't connect to the backend server, and will fail with an HTTP 502 (Bad Gateway) error.
Copy file name to clipboardExpand all lines: learn-pr/azure/end-to-end-encryption-with-app-gateway/includes/4-exercise-configure-backend-pools-for-encryption.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
@@ -42,7 +42,7 @@ The following image highlights the elements you configure in this exercise. You'
42
42
```
43
43
44
44
> [!NOTE]
45
-
> This script takes several minutes to finish. Allow it to work through multiple processes to unpack and configure the gateway and resources. You should see that the process succeeded with zero warnings and zero errors.
45
+
> This script takes several minutes to finish. Allow it to work through multiple processes to unpack and configure the gateway and resources. You should see that the process succeeds with zero warnings and zero errors.
46
46
47
47
## Verify that the web server is configured correctly
Copy file name to clipboardExpand all lines: learn-pr/azure/end-to-end-encryption-with-app-gateway/includes/5-configure-listener-for-encryption.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
@@ -1,4 +1,4 @@
1
-
You've configured SSL for the connection between Azure Application Gateway and the servers in the backend pool. For the shipping portal, you need full end-to-end encryption. To do this encryption, you'll also need to encrypt the messages that the client sends to Application Gateway.
1
+
You've configured SSL for the connection between Azure Application Gateway and the servers in the backend pool. For the shipping portal, you need full end-to-end encryption. To accomplish this encryption, you'll also need to encrypt the messages that the client sends to Application Gateway.
0 commit comments