Reputation: 13
After installing and running Apache2 on my EC2 Instance (Ubuntu 16.04) in AWS, I want to access the Site from my public browser with "ec2-3-231-162-52.compute-1.amazonaws.com". Apache2 is running on port 80, and I already created a security group, which allows Port 80 to connect. So why can't I access the default apache2 website?
Apache2 running status:
Security Group Incoming Traffic:
Security Group Outgoing Traffic:
Upvotes: 1
Views: 1403
Reputation: 57217
You need quite a few pieces to make sure this is working:
Requests will flow through the internet gateway into the VPC, use the route table to find where they should go, and arrive at your EC2 instance, where the security group you've set up allows them into the correct port.
Upvotes: 1