Ubuntu + Apache não funciona na porta 80

1

Eu tenho alguns problemas com o Apache (Ubuntu OS). por alguns motivos, o apache não funciona na porta 80.

Para esta configuração: etc / apache2 / ports.conf

Listen 80

<IfModule ssl_module>
    Listen 443
</IfModule>

<IfModule mod_gnutls.c>
    Listen 443
</IfModule>

etc / apache2 / 000-default.conf

<VirtualHost *:80>
    ServerAdmin webmaster@localhost
    DocumentRoot /var/www/html
</VirtualHost>

netstat . Eu tento conectar "my_server_ip" ou "my_server_ip: 80" navegador dizer "conexão fechada"

Se eu mudar de porta para 8080 (por exemplo) e tentar conectar "my_server_ip: 8080", funciona bem e vejo a página padrão do apache.

configurações: etc / apache2 / ports.conf

Listen 8080

<IfModule ssl_module>
    Listen 443
</IfModule>

<IfModule mod_gnutls.c>
    Listen 443
</IfModule>

etc / apache2 / 000-default.conf

<VirtualHost *:8080>
        ServerAdmin webmaster@localhost
        DocumentRoot /var/www/html
    </VirtualHost>

netstat .

    
por Alex 26.10.2015 / 15:35

1 resposta

0

Esse foi o meu problema:

AllowOverride None

deve ser alterado para

AllowOverride All
    
por 21.03.2018 / 10:13