如何从互联网浏览器访问 AWS Ubuntu 实例中的欢迎 NGINX 页面?

如何从互联网浏览器访问 AWS Ubuntu 实例中的欢迎 NGINX 页面?

我刚刚创建了一个 ubuntu 16.04 的新实例。刚刚安装了 NGINX,这是我在netstat -ntlp

root@ip-172-31-8-234:/home/ubuntu# netstat -ntlp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      11856/nginx -g daem
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      1328/sshd
tcp6       0      0 :::80                   :::*                    LISTEN      11856/nginx -g daem
tcp6       0      0 :::22                   :::*                    LISTEN      1328/sshd

如果我询问 curl localhost,我得到的结果是:

ubuntu@ip-172-31-8-234:~$ curl localhost
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
    body {
        width: 35em;
        margin: 0 auto;
        font-family: Tahoma, Verdana, Arial, sans-serif;
    }
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>

<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>

<p><em>Thank you for using nginx.</em></p>
</body>
</html>

这是欢迎 NGINX 页面。看来 NGINX 已经完成了。

但我希望能够通过互联网看到这个页面。

这就是我的 AWS 服务页面上的内容。

Public DNS (IPv4) - ec2-54-94-152-233.sa-east-1.compute.amazonaws.com
Instance state - running
IPv4 Public IP - 54.94.152.233

因此我认为如果我在任何浏览器中输入 54.94.152.233,我应该能够看到欢迎页面。

相反,我收到这个错误信息:

This site can’t be reached

54.94.152.233 took too long to respond.

我错过了什么?

答案1

我记得默认的 VPC 和安全组设置不允许任何端口上的传入流量。将设置更改为允许端口 80 上的传入流量,这样就没问题了

相关内容