8080端口可以访问,为什么80端口不能访问?
Why can't I access port 80 when I can access port 8080?
我已经通过 AWS EC2 部署了我的 Web 应用程序。我制定了如下入站规则。
Inbound Rules
我现在可以通过 myIP:8080
访问,但我在 myIP
或 myIP:80
时遇到错误。我收到的错误消息是:This site can’t be reached. refused to connect. Try: Checking the connection. Checking the proxy and the firewall. ERR_CONNECTION_REFUSED
我在这里做错了什么?
我已经使用以下命令通过端口转发解决了这个问题:
sudo iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 8080
我已经通过 AWS EC2 部署了我的 Web 应用程序。我制定了如下入站规则。
Inbound Rules
我现在可以通过 myIP:8080
访问,但我在 myIP
或 myIP:80
时遇到错误。我收到的错误消息是:This site can’t be reached. refused to connect. Try: Checking the connection. Checking the proxy and the firewall. ERR_CONNECTION_REFUSED
我在这里做错了什么?
我已经使用以下命令通过端口转发解决了这个问题:
sudo iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 8080