Reputation: 2630
I have two websites and two different ssl certificates. I have an Azure windows VM. I have configured website1 to port 443, applied one certificate, added inboud rule of https(port 443) rule from azure portal. I have one more website which i want to be accessible over https. I have another ssl certificate. I hosted this website on port 444, added certificate. the problem is azure portal only allows port:443 inbound rule.
How can i host multiple https websites on windows azure vm?
Upvotes: 0
Views: 1129
Reputation: 72171
Well, you should create a custom rule for port 444, Azure doesn't really inspect traffic, so those labels (https,ssh,rdp, etc) are only for your convenience.
Also (apart from nsg rule), you should enable port 444 on windows firewall, make sure you app listens on 444 and make sure you can connect to a vm
Upvotes: 1
Reputation: 19195
How can i host multiple https websites on windows azure vm?
1.You need open port 444 on Windows Firewall(Inbound rule). More information about open ports on Windows Firewall please refer to this link.
2.You need open port 444 on Azure NSG rule(Inbound rule).
Upvotes: 1