AWS EC2/nginx – Troubleshooting Static Site Deployment

amazon ec2amazon-web-servicesnginxstatic-content

I set up a micro instance (Ubuntu, 32 bit) and assigned an elastic IP (23.23.245.104)

Public DNS: ec2-23-23-245-104.compute-1.amazonaws.com

I successfully ssh'ed to the machine and installed nginx.

Then I edited the server_name attribute in nginx's config file (/etc/nginx/sites-available/default)

server_name ec2-23-23-245-104.compute-1.amazonaws.com;

Restarted nginx and hit http://ec2-23-23-245-104.compute-1.amazonaws.com but got a "could not connect" error.

What did I forget to do?

Thanks

Best Answer

You probably forgot to add TCP port 80 to your security group in the AWS console.

enter image description here

Related Topic