0

I have created Azure application gateway with instructions in this link. After completion I realised that it works with only HTTPS protocol. I want my website to work with both port, 80 & 443. I want to add a new listener. I was able to add a new listener on port 80 with corresponding rule to route to with that listener. THe first rule I created for HTTPS has following information for application gateway:

"ProvisioningState": "Succeeded", "Name": "rule01",

The rule for HTTP I have added is rule03 and it shows up in the appliation gateway without "ProvisioningState": "Succeeded". What I need to do to provision the rule to application gateway?

juvchan
  • 6,113
  • 2
  • 22
  • 35
Ruchit Rami
  • 2,273
  • 4
  • 28
  • 53

1 Answers1

1

You will need to add new port, new listener and corresponding new rule for port 80.

So from the link mentioned, you will need to create 2 ports, 2 listeners and 2 rules. and in the last step where you call New-AzureRmApplicationGateway, You will then need to pass 2 comma separated values to -FrontendPorts -HttpListeners and -RequestRoutingRules .

Mani
  • 696
  • 6
  • 12