Skip to content

Commit 996a4ce

Browse files
authored
Merge pull request #89803 from vhorne/ag-ssl
update images
2 parents 3437509 + f97ea18 commit 996a4ce

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

articles/application-gateway/create-ssl-portal.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: application-gateway
55
author: vhorne
66
ms.service: application-gateway
77
ms.topic: tutorial
8-
ms.date: 08/31/2019
8+
ms.date: 09/27/2019
99
ms.author: victorh
1010
#Customer intent: As an IT administrator, I want to use the Azure portal to configure Application Gateway with SSL termination so I can secure my application traffic.
1111
---
@@ -77,7 +77,7 @@ Export-PfxCertificate `
7777
- **Resource group**: Select **myResourceGroupAG** for the resource group. If it doesn't exist, select **Create new** to create it.
7878
- **Application gateway name**: Enter *myAppGateway* for the name of the application gateway.
7979

80-
![Create new application gateway: Basics](./media/application-gateway-create-gateway-portal/application-gateway-create-basics.png)
80+
![Create new application gateway: Basics](./media/application-gateway-create-gateway-portal/application-gateway-create-basics.png)
8181

8282
2. For Azure to communicate between the resources that you create, it needs a virtual network. You can either create a new virtual network or use an existing one. In this example, you'll create a new virtual network at the same time that you create the application gateway. Application Gateway instances are created in separate subnets. You create two subnets in this example: one for the application gateway, and another for the backend servers.
8383

@@ -93,7 +93,7 @@ Export-PfxCertificate `
9393

9494
Select **OK** to close the **Create virtual network** window and save the virtual network settings.
9595

96-
![Create new application gateway: virtual network](./media/application-gateway-create-gateway-portal/application-gateway-create-vnet.png)
96+
![Create new application gateway: virtual network](./media/application-gateway-create-gateway-portal/application-gateway-create-vnet.png)
9797

9898
3. On the **Basics** tab, accept the default values for the other settings and then select **Next: Frontends**.
9999

@@ -105,7 +105,7 @@ Export-PfxCertificate `
105105
106106
2. Choose **Create new** for the **Public IP address** and enter *myAGPublicIPAddress* for the public IP address name, and then select **OK**.
107107

108-
![Create new application gateway: frontends](./media/application-gateway-create-gateway-portal/application-gateway-create-frontends.png)
108+
![Create new application gateway: frontends](./media/application-gateway-create-gateway-portal/application-gateway-create-frontends.png)
109109

110110
3. Select **Next: Backends**.
111111

@@ -122,7 +122,7 @@ The backend pool is used to route requests to the backend servers that serve the
122122

123123
3. In the **Add a backend pool** window, select **Add** to save the backend pool configuration and return to the **Backends** tab.
124124

125-
![Create new application gateway: backends](./media/application-gateway-create-gateway-portal/application-gateway-create-backends.png)
125+
![Create new application gateway: backends](./media/application-gateway-create-gateway-portal/application-gateway-create-backends.png)
126126

127127
4. On the **Backends** tab, select **Next: Configuration**.
128128

@@ -147,19 +147,19 @@ On the **Configuration** tab, you'll connect the frontend and backend pool you c
147147
- **Certificate name** - Type *mycert1* for the name of the certificate.
148148
- **Password** - Type *Azure123456!* for the password.
149149

150-
Accept the default values for the other settings on the **Listener** tab, then select the **Backend targets** tab to configure the rest of the routing rule.
150+
Accept the default values for the other settings on the **Listener** tab, then select the **Backend targets** tab to configure the rest of the routing rule.
151151

152-
![Create new application gateway: listener](./media/application-gateway-create-gateway-portal/application-gateway-create-rule-listener.png)
152+
![Create new application gateway: listener](./media/create-ssl-portal/application-gateway-create-rule-listener.png)
153153

154154
4. On the **Backend targets** tab, select **myBackendPool** for the **Backend target**.
155155

156156
5. For the **HTTP setting**, select **Create new** to create a new HTTP setting. The HTTP setting will determine the behavior of the routing rule. In the **Add an HTTP setting** window that opens, enter *myHTTPSetting* for the **HTTP setting name**. Accept the default values for the other settings in the **Add an HTTP setting** window, then select **Add** to return to the **Add a routing rule** window.
157157

158-
![Create new application gateway: HTTP setting](./media/application-gateway-create-gateway-portal/application-gateway-create-httpsetting.png)
158+
![Create new application gateway: HTTP setting](./media/create-ssl-portal/application-gateway-create-httpsetting.png)
159159

160160
6. On the **Add a routing rule** window, select **Add** to save the routing rule and return to the **Configuration** tab.
161161

162-
![Create new application gateway: routing rule](./media/application-gateway-create-gateway-portal/application-gateway-create-rule-backends.png)
162+
![Create new application gateway: routing rule](./media/application-gateway-create-gateway-portal/application-gateway-create-rule-backends.png)
163163

164164
7. Select **Next: Tags** and then **Next: Review + create**.
165165

@@ -209,17 +209,17 @@ In this example, you install IIS on the virtual machines only to verify Azure cr
209209

210210
2. Run the following command to install IIS on the virtual machine:
211211

212-
```azurepowershell-interactive
213-
Set-AzVMExtension `
214-
-ResourceGroupName myResourceGroupAG `
215-
-ExtensionName IIS `
216-
-VMName myVM `
217-
-Publisher Microsoft.Compute `
218-
-ExtensionType CustomScriptExtension `
219-
-TypeHandlerVersion 1.4 `
220-
-SettingString '{"commandToExecute":"powershell Add-WindowsFeature Web-Server; powershell Add-Content -Path \"C:\\inetpub\\wwwroot\\Default.htm\" -Value $($env:computername)"}' `
221-
-Location EastUS
222-
```
212+
```azurepowershell-interactive
213+
Set-AzVMExtension `
214+
-ResourceGroupName myResourceGroupAG `
215+
-ExtensionName IIS `
216+
-VMName myVM `
217+
-Publisher Microsoft.Compute `
218+
-ExtensionType CustomScriptExtension `
219+
-TypeHandlerVersion 1.4 `
220+
-SettingString '{"commandToExecute":"powershell Add-WindowsFeature Web-Server; powershell Add-Content -Path \"C:\\inetpub\\wwwroot\\Default.htm\" -Value $($env:computername)"}' `
221+
-Location EastUS
222+
```
223223

224224
3. Create a second virtual machine and install IIS by using the steps that you previously completed. Use *myVM2* for the virtual machine name and for the **VMName** setting of the **Set-AzVMExtension** cmdlet.
225225

@@ -260,4 +260,4 @@ In this example, you install IIS on the virtual machines only to verify Azure cr
260260
## Next steps
261261

262262
> [!div class="nextstepaction"]
263-
> [Learn more about Application Gateway SSL support](ssl-overview.md)
263+
> [Learn more about Application Gateway SSL support](ssl-overview.md)
96.2 KB
Loading
80.8 KB
Loading

0 commit comments

Comments
 (0)