0

我不确定stackoverflow是否也允许服务器配置问题,但由于这可能与apache有关,我希望有人能提供帮助。我正在尝试设置我的云服务器以允许端口 80 上的传入连接,以便当我在浏览器中输入http://domain.com时可以看到我的服务器文件。Apache 已安装,我目前正忙于设置我的 iptables(我怀疑这可能是问题所在)。

我目前的iptables如下:

 Chain INPUT (policy ACCEPT)
 target     prot opt source               destination
 ACCEPT     all  --  anywhere             anywhere            state RELATED,ESTABLISHED
 ACCEPT     icmp --  anywhere             anywhere
 ACCEPT     all  --  anywhere             anywhere
 ACCEPT     tcp  --  anywhere             anywhere            state NEW tcp dpt:ssh
 REJECT     all  --  anywhere             anywhere            reject-with icmp-host-     prohibited

 Chain FORWARD (policy ACCEPT)
 target     prot opt source               destination
 REJECT     all  --  anywhere             anywhere            reject-with icmp-host-     prohibited

 Chain OUTPUT (policy ACCEPT)
 target     prot opt source               destination

因为这是我第一次尝试(而且我的网络体验与 MS 机器上的 GUI 提供的内容一致),所以我不确定我是否做得正确。

有任何想法吗?

4

1 回答 1

0

设法让它工作,apache没有启动:)

于 2013-02-21T20:59:28.193 回答