Apache em execução, mas nenhum carregamento de site

1

Apache está sendo executado corretamente no meu servidor, quando estou fazendo um ping no endereço do servidor eu estou recebendo apenas o seguinte

PING 45.56.87.123 (45.56.87.123) 56(84) bytes of data

nenhum do meu site está carregando, eu tenho algo falso em http://45.56.87.123/test/index.html mas nem consigo acessar a página lá,

meus iptables:

[root@localhost test]# iptables -L
Chain INPUT (policy ACCEPT)
target     prot opt source               destination         
ACCEPT     tcp  --  anywhere             anywhere             tcp dpt:http
ACCEPT     all  --  anywhere             anywhere            
REJECT     all  --  anywhere             loopback/8           reject-with icmp-port-unreachable
ACCEPT     all  --  anywhere             anywhere             state RELATED,ESTABLISHED
ACCEPT     tcp  --  anywhere             anywhere             tcp dpt:http
ACCEPT     tcp  --  anywhere             anywhere             tcp dpt:https
ACCEPT     tcp  --  anywhere             anywhere             state NEW tcp dpt:ssh
ACCEPT     icmp --  anywhere             anywhere            
LOG        all  --  anywhere             anywhere             limit: avg 5/min burst 5 LOG level debug prefix "iptables denied: "
DROP       all  --  anywhere             anywhere            

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination         
DROP       all  --  anywhere             anywhere            

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination         
ACCEPT     all  --  anywhere             anywhere      

alguma ajuda sobre como posso fazer o servidor funcionar corretamente?

    
por Noor 17.01.2017 / 13:46

2 respostas

0

Como não posso adicionar um comentário (baixa reputação), vou apenas tentar colar a resposta. Basicamente, a conexão com o seu servidor está expirando:

$ nc -vz 45.56.87.123 443
nc: connect to 45.56.87.123 port 443 (tcp) failed: Connection timed out

$ nc -vz 45.56.87.123 80
nc: connect to 45.56.87.123 port 80 (tcp) failed: Connection timed ou

Das regras iptables que eu vejo acima, eu não notei nada de errado, então você pode tentar verificar se o seu serviço está escutando nessa porta primeiro:

lsof -i :80
lsof -i :443

Se não, existe o seu problema. Se sim, você fica com problema de firewall, então você pode tentar reiniciar o iptables . Além disso, qual sistema operacional você está usando?

A conexão do localhost está funcionando? Como:

curl http://45.56.87.123/test/index.html

ou

nc -vz 127.0.0.1 80
nc -vz 127.0.0.1 443
    
por 17.01.2017 / 14:37
0

Talvez você precise adicionar uma nova configuração sites-available ou alterar seu .htaccess na sua pasta pública

    
por 17.01.2017 / 14:38

Tags