创建应用程序网关和重写 HTTP 标头
可以使用 Azure PowerShell 在创建新的自动缩放和区域冗余的应用程序网关 SKU 时配置重写 HTTP 请求和响应标头的规则。
在本文中,学习如何:
- 创建自动缩放虚拟网络
- 创建保留的公共 IP
- 设置应用程序网关基础结构
- 指定 http 标头重写规则配置
- 指定自动缩放
- 创建应用程序网关
- 测试应用程序网关
如果没有 Azure 订阅,可在开始前创建一个试用帐户。
本文要求在本地运行 Azure PowerShell。 必须安装 Az 模块 1.0.0 或更高版本。 依次运行 Import-Module Az
和 Get-Module Az
以查找版本。 如果需要升级,请参阅安装 Azure PowerShell 模块。 验证 PowerShell 版本以后,请运行 Connect-AzAccount -Environment AzureChinaCloud
,以便创建与 Azure 的连接。
Connect-AzAccount -Environment AzureChinaCloud
Select-AzSubscription -Subscription "<sub name>"
在某个可用的位置创建资源组。
$location = "China North 2"
$rg = "<rg name>"
#Create a new Resource Group
New-AzResourceGroup -Name $rg -Location $location
为自动缩放的应用程序网关创建一个包含一个专用子网的虚拟网络。 目前,在每个专用子网中,只能部署一个自动缩放的应用程序网关。
#Create VNet with two subnets
$sub1 = New-AzVirtualNetworkSubnetConfig -Name "AppGwSubnet" -AddressPrefix "10.0.0.0/24"
$sub2 = New-AzVirtualNetworkSubnetConfig -Name "BackendSubnet" -AddressPrefix "10.0.1.0/24"
$vnet = New-AzvirtualNetwork -Name "AutoscaleVNet" -ResourceGroupName $rg `
-Location $location -AddressPrefix "10.0.0.0/16" -Subnet $sub1, $sub2
将 PublicIPAddress 的分配方法指定为 Static 。 自动缩放应用程序网关 VIP 只能为静态。 不支持动态 IP。 只支持标准 PublicIpAddress SKU。
#Create static public IP
$pip = New-AzPublicIpAddress -ResourceGroupName $rg -name "AppGwVIP" `
-location $location -AllocationMethod Static -Sku Standard
在本地对象中检索资源组、子网和 IP 的详细信息,以便创建应用程序网关的 IP 配置详细信息。
$resourceGroup = Get-AzResourceGroup -Name $rg
$publicip = Get-AzPublicIpAddress -ResourceGroupName $rg -name "AppGwVIP"
$vnet = Get-AzvirtualNetwork -Name "AutoscaleVNet" -ResourceGroupName $rg
$gwSubnet = Get-AzVirtualNetworkSubnetConfig -Name "AppGwSubnet" -VirtualNetwork $vnet
使用与现有的标准应用程序网关相同的格式配置 IP 配置、前端 IP 配置、后端池、HTTP 设置、证书、端口和侦听器。 新 SKU 与标准 SKU 遵循相同的对象模型。
$ipconfig = New-AzApplicationGatewayIPConfiguration -Name "IPConfig" -Subnet $gwSubnet
$fip = New-AzApplicationGatewayFrontendIPConfig -Name "FrontendIPCOnfig" -PublicIPAddress $publicip
$pool = New-AzApplicationGatewayBackendAddressPool -Name "Pool1" `
-BackendIPAddresses testbackend1.chinanorth2.chinacloudapp.cn, testbackend2.chinanorth2.chinacloudapp.cn
$fp01 = New-AzApplicationGatewayFrontendPort -Name "HTTPPort" -Port 80
$listener01 = New-AzApplicationGatewayHttpListener -Name "HTTPListener" `
-Protocol Http -FrontendIPConfiguration $fip -FrontendPort $fp01
$setting = New-AzApplicationGatewayBackendHttpSettings -Name "BackendHttpSetting1" `
-Port 80 -Protocol Http -CookieBasedAffinity Disabled
配置重写 http 标头所需的新对象:
RequestHeaderConfiguration:此对象用于指定要重写的请求标头字段以及需要重写的原始标头的新值。
ResponseHeaderConfiguration:此对象用于指定要重写的响应标头字段以及需要重写的原始标头的新值。
ActionSet:此对象包含上面指定的请求和响应标头的配置。
RewriteRule:此对象包含上面指定的所有“actionSets” 。
RewriteRuleSet - 此对象包含所有 rewriteRules,并且需要附加到(基本或基于路径的)请求路由规则 。
$requestHeaderConfiguration = New-AzApplicationGatewayRewriteRuleHeaderConfiguration -HeaderName "X-isThroughProxy" -HeaderValue "True" $responseHeaderConfiguration = New-AzApplicationGatewayRewriteRuleHeaderConfiguration -HeaderName "Strict-Transport-Security" -HeaderValue "max-age=31536000" $actionSet = New-AzApplicationGatewayRewriteRuleActionSet -RequestHeaderConfiguration $requestHeaderConfiguration -ResponseHeaderConfiguration $responseHeaderConfiguration $rewriteRule = New-AzApplicationGatewayRewriteRule -Name rewriteRule1 -ActionSet $actionSet $rewriteRuleSet = New-AzApplicationGatewayRewriteRuleSet -Name rewriteRuleSet1 -RewriteRule $rewriteRule
创建请求路由规则。 创建此重写配置后,会通过路由规则将其附加到源侦听器。 使用基本路由规则时,标头重写配置与源侦听器相关联,并且是全局标头重写。 使用基于路径的路由规则时,将在 URL 路径映射中定义标头重写配置。 因此,它仅适用于站点的特定路径区域。 下面创建了一个基本的路由规则并附加了重写规则集。
$rule01 = New-AzApplicationGatewayRequestRoutingRule -Name "Rule1" -RuleType basic `
-BackendHttpSettings $setting -HttpListener $listener01 -BackendAddressPool $pool -RewriteRuleSet $rewriteRuleSet
现在可以为应用程序网关指定自动缩放配置。 支持两种自动缩放配置类型:
固定容量模式。 在此模式下,应用程序网关不自动缩放,而是在固定缩放单元容量下运行。
$sku = New-AzApplicationGatewaySku -Name Standard_v2 -Tier Standard_v2 -Capacity 2
自动缩放模式。 在此模式下,应用程序网关根据应用程序流量模式自动缩放。
$autoscaleConfig = New-AzApplicationGatewayAutoscaleConfiguration -MinCapacity 2 $sku = New-AzApplicationGatewaySku -Name Standard_v2 -Tier Standard_v2
创建应用程序网关,包括冗余区域和自动缩放配置。
$appgw = New-AzApplicationGateway -Name "AutoscalingAppGw" -Zone 1,2,3 -ResourceGroupName $rg -Location $location -BackendAddressPools $pool -BackendHttpSettingsCollection $setting -GatewayIpConfigurations $ipconfig -FrontendIpConfigurations $fip -FrontendPorts $fp01 -HttpListeners $listener01 -RequestRoutingRules $rule01 -Sku $sku -AutoscaleConfiguration $autoscaleConfig -RewriteRuleSet $rewriteRuleSet
使用 Get-AzPublicIPAddress 获取应用程序网关的公共 IP 地址。 复制该公共 IP 地址或 DNS 名称,并将其粘贴到浏览器的地址栏。
Get-AzPublicIPAddress -ResourceGroupName $rg -Name AppGwVIP
首先浏览使用应用程序网关创建的资源。 然后,如果不再需要资源组、应用程序网关和所有相关资源,可以使用 Remove-AzResourceGroup
命令将其删除。
Remove-AzResourceGroup -Name $rg