Forum Discussion
rm115
Aug 17, 2021Copper Contributor
Site from Azure VM to web
Newbie here, have a vm on azure running Windows server 2016 with IIS. Have installed a ticketing application to be hosted on IIS. I can access the application using http://localhost:portno from the a...
Athithya
Aug 17, 2021Brass Contributor
1. Does your VM have public IP?
2. If yes, we need to open port 80 on NSG Inbound between your VM and internet like
source - Any or (Service Tag -> internet), Destination =your VM public IP.
3. To test around, have source - any, destination - any and port - 80, protocol - any
4. Note having any , any in inbound is a security risk. Once testing done, please remove it open ports accordingly between source and destination
5. As MaR1a said, refer the https://docs.microsoft.com/en-us/azure/virtual-machines/windows/nsg-quickstart-portal
- rm115Aug 17, 2021Copper ContributorThanks