title | description | services | author | manager | editor | ms.service | ms.topic | ms.workload | ms.date | ms.author |
---|---|---|---|---|---|---|---|---|---|---|
Create an application gateway with multiple site hosting - Azure portal | Microsoft Docs |
Learn how to create an application gateway that hosts multiple sites using the Azure portal. |
application-gateway |
vhorne |
jpconnock |
tysonn |
application-gateway |
article |
infrastructure-services |
01/26/2018 |
victorh |
You can use the Azure portal to configure hosting of multiple web sites when you create an application gateway. In this tutorial, you create backend pools using virtual machines scale sets. You then configure listeners and rules based on domains that you own to make sure web traffic arrives at the appropriate servers in the pools. This tutorial assumes that you own multiple domains and uses examples of www.contoso.com and www.fabrikam.com.
In this article, you learn how to:
[!div class="checklist"]
- Create an application gateway
- Create virtual machines for backend servers
- Create backend pools with the backend servers
- Create listeners and routing rules
- Create a CNAME record in your domain
If you don't have an Azure subscription, create a free account before you begin.
Log in to the Azure portal at https://portal.azure.com
A virtual network is needed for communication between the resources that you create. Two subnets are created in this example: one for the application gateway, and the other for the backend servers. You can create a virtual network at the same time that you create the application gateway.
-
Click New found on the upper left-hand corner of the Azure portal.
-
Select Networking and then select Application Gateway in the Featured list.
-
Enter these values for the application gateway:
- myAppGateway - for the name of the application gateway.
- myResourceGroupAG - for the new resource group.
-
Accept the default values for the other settings and then click OK.
-
Click Choose a virtual network, click Create new, and then enter these values for the virtual network:
- myVNet - for the name of the virtual network.
- 10.0.0.0/16 - for the virtual network address space.
- myAGSubnet - for the subnet name.
- 10.0.0.0/24 - for the subnet address space.
-
Click OK to create the virtual network and subnet.
-
Click Choose a public IP address, click Create new, and then enter the name of the public IP address. In this example, the public IP address is named myAGPublicIPAddress. Accept the default values for the other settings and then click OK.
-
Accept the default values for the Listener configuration, leave the Web application firewall disabled, and then click OK.
-
Review the settings on the summary page, and then click OK to create the network resources and the application gateway. It may take several minutes for the application gateway to be created, wait until the deployment finishes successfully before moving on to the next section.
-
Click All resources in the left-hand menu, and then click myVNet from the resources list.
-
Click Subnets, and then click Subnet.
-
Enter myBackendSubnet for the name of the subnet and then click OK.
In this example, you create two virtual machines to be used as backend servers for the application gateway. You also install IIS on the virtual machines to verify that traffic is routing correctly.
-
Click New.
-
Click Compute and then select Windows Server 2016 Datacenter in the Featured list.
-
Enter these values for the virtual machine:
- contosoVM - for the name of the virtual machine.
- azureuser - for the administrator user name.
- Azure123456! for the password.
- Select Use existing, and then select myResourceGroupAG.
-
Click OK.
-
Select DS1_V2 for the size of the virtual machine, and click Select.
-
Make sure that myVNet is selected for the virtual network and the subnet is myBackendSubnet.
-
Click Disabled to disable boot diagnostics.
-
Click OK, review the settings on the summary page, and then click Create.
-
Open the interactive shell and make sure that it is set to PowerShell.
-
Run the following command to install IIS on the virtual machine:
$publicSettings = @{ "fileUris" = (,"https://raw.githubusercontent.com/Azure/azure-docs-powershell-samples/master/application-gateway/iis/appgatewayurl.ps1"); "commandToExecute" = "powershell -ExecutionPolicy Unrestricted -File appgatewayurl.ps1" } Set-AzureRmVMExtension ` -ResourceGroupName myResourceGroupAG ` -Location eastus ` -ExtensionName IIS ` -VMName contosoVM ` -Publisher Microsoft.Compute ` -ExtensionType CustomScriptExtension ` -TypeHandlerVersion 1.4 ` -Settings $publicSettings
-
Create the second virtual machine and install IIS using the steps that you just finished. Enter the names of fabrikamVM for the name and for the value of VMName in Set-AzureRmVMExtension.
-
Click All resources and then click myAppGateway.
-
Click Backend pools, and then click Add.
-
Enter a name of contosoPool and add contosoVM using Add target.
-
Click OK.
-
Click Backend pools and then click Add.
-
Create the fabrikamPool with the fabrikamVM using the steps that you just finished.
-
Click Listeners and then click Multi-site.
-
Enter these values for the listener:
- contosoListener - for the name of the listener.
- www.contoso.com - replace this host name example with your domain name.
-
Click OK.
-
Create a second listener using the name of fabrikamListener and use your second domain name. In this example, www.fabrikam.com is used.
Rules are processed in the order they are listed, and traffic is directed using the first rule that matches regardless of specificity. For example, if you have a rule using a basic listener and a rule using a multi-site listener both on the same port, the rule with the multi-site listener must be listed before the rule with the basic listener in order for the multi-site rule to function as expected.
In this example, you create two new rules and delete the default rule that was created when you created the application gateway.
-
Click Rules and then click Basic.
-
Enter contosoRule for the name.
-
Select contosoListener for the listener.
-
Select contosoPool for the backend pool.
-
Click OK.
-
Create a second rule using the names of fabrikamRule, fabrikamListener, and fabrikamPool.
-
Delete the default rule named rule1 by clicking it, and then clicking Delete.
After the application gateway is created with its public IP address, you can get the DNS address and use it to create a CNAME record in your domain. The use of A-records is not recommended because the VIP may change when the application gateway is restarted.
-
Click All resources, and then click myAGPublicIPAddress.
-
Copy the DNS address and use it as the value for a new CNAME record in your domain.
-
Enter your domain name into the address bar of your browser. Such as, http://www.contoso.com.
-
Change the address to your other domain and you should see something like the following example:
In this article, you learned how to:
[!div class="checklist"]
- Create an application gateway
- Create virtual machines for backend servers
- Create backend pools with the backend servers
- Create listeners and routing rules
- Create a CNAME record in your domain
[!div class="nextstepaction"] Learn more about what you can do with application gateway