I have a local web site hosted on Windows 2019 EC2 Instance. This ec2 instance has a public IP (Elastic IP Address). The public IP is ping-able from out of the ec2 instance. I am able to access the portal using the below from the same EC2 Instance
http://{Public IPv4 DNS}/Login.asp (Working on the Ec2)
http://{localhost}/Login.asp (Working on the Ec2)
http://{PrivateIP}/Login.asp (Working on the Ec2)
http://{PublicIP}/Login.asp (Not working, error: ERR_CONNECTION_TIMED_OUT)
Added the FQDN to the Host file and also added
In the Ec2 Instance security group, added the inbound rule with the port (80),Protocol TCP and the public IP
I want to access the the portal using the public IP from out of the EC2 Instance. I am not sure what I missed in the configuration. Thank you.