web-dev-qa-db-ja.com

WebAPPSを使用したAzureSSLアプリケーションゲートウェイ

私は、SSLの背後にあるすべてのものを使用してWebアプリでホストされているWebアプリ用のAzure Application GatewayWebアプリケーションファイアウォールのセットアップに取り組んでいます。

この記事を使用して、すべてがSSLでない場合に動作させることができます https://docs.Microsoft.com/en-us/Azure/application-gateway/application-gateway-web-app-powershell

ただし、SSLに変更してCERファイルをアップロードしようとすると、Heathlyが表示されません。 httpsへのすべての参照を変更しました、そしてすべてが正しいように見えますが、私はまだ立ち往生しています

私もこの記事を試しました https://docs.Microsoft.com/en-us/Azure/application-gateway/application-gateway-end-to-end-ssl-powershell 運が悪かった

私が欠けているものについての考えは、私がソリューションでHAに行く前に、これが機能する必要があります

ありがとうアレックス

1
alex Reid

これは、MSサポートがこの作業を行うために私と協力して取り組んだスクリプトです

# FQDN of the web app
$webappFQDN = "XXX.XXXXX.com"  

# Retrieve an existing application gateway
$gw = Get-AzureRmApplicationGateway -Name "XXXX" -ResourceGroupName "XXXX"

# Define the status codes to match for the probe
$match=New-AzureRmApplicationGatewayProbeHealthResponseMatch -StatusCode 200-399

# Add a new probe to the application gateway
Add-AzureRmApplicationGatewayProbeConfig -name webappprobe-1 -ApplicationGateway $gw -Protocol Https -Path / -Interval 30 -Timeout 120 -UnhealthyThreshold 3 -PickHostNameFromBackendHttpSettings -Match $match

# Retrieve the newly added probe
$probe = Get-AzureRmApplicationGatewayProbeConfig -name webappprobe-1 -ApplicationGateway $gw

# Configure an existing backend http settings 

Set-AzureRmApplicationGatewayBackendHttpSettings -Name appGatewayBackendHttpSettings -ApplicationGateway $gw -PickHostNameFromBackendAddress -Port 443 -Protocol https -CookieBasedAffinity Disabled -RequestTimeout 30 -Probe $probe

Exclude these 2 lines
#$authcert = New-AzureRmApplicationGatewayAuthenticationCertificate -Name whitelistcert1 -CertificateFile C:\XXXX\XXXX.cer

#Set-AzureRmApplicationGatewayBackendHttpSettings -Name appGatewayBackendHttpSettings -ApplicationGateway $gw  -PickHostNameFromBackendAddress -Port 443 -Protocol Https -CookieBasedAffinity Enabled -AuthenticationCertificates $authcert

# Add the web app to the backend pool
Set-AzureRmApplicationGatewayBackendAddressPool -Name appGatewayBackendPool -ApplicationGateway $gw -BackendFqdns $webappFQDN

# Update the application gateway
Set-AzureRmApplicationGateway -ApplicationGateway $gw
1
alex Reid