O problema é que o módulo ssl não estava habilitado no apache2. Para habilitar eu tive que:
digite a2enmod ssl
e pressione Enter e digite service apache2 restart
hit enter
e funcionou
Eu tive que reinstalar o Debian. Antes da reinstalação eu tenho usado o meu servidor como um compartilhamento de arquivos (usando Owncloud). Depois de reinstalar o Debian em uma unidade recém-formatada e instalar o apache2, não consegui mostrar a página padrão.
O serviço Apache está em execução:
● apache2.service - LSB: Apache2 web server
Loaded: loaded (/etc/init.d/apache2)
Active: active (running) since Mon 2016-08-08 14:39:45 UTC; 10min ago
Process: 2571 ExecStop=/etc/init.d/apache2 stop (code=exited, status=0/SUCCESS)
Process: 2597 ExecStart=/etc/init.d/apache2 start (code=exited, status=0/SUCCESS)
CGroup: /system.slice/apache2.service
├─2613 /usr/sbin/apache2 -k start
├─2617 /usr/sbin/apache2 -k start
├─2618 /usr/sbin/apache2 -k start
├─2619 /usr/sbin/apache2 -k start
├─2620 /usr/sbin/apache2 -k start
└─2621 /usr/sbin/apache2 -k start
Aug 08 14:39:44 raspberrypi apache2[2597]: Starting web server: apache2AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerName' directive globally ...ress this message
Aug 08 14:39:45 raspberrypi apache2[2597]: .
Aug 08 14:39:45 raspberrypi systemd[1]: Started LSB: Apache2 web server.
Hint: Some lines were ellipsized, use -l to show in full.
Se eu executar apache2 -t
, isso é o que recebo:
[Mon Aug 08 14:52:00.502453 2016] [core:warn] [pid 2753] AH00111: Config variable ${APACHE_PID_FILE} is not defined
[Mon Aug 08 14:52:00.502855 2016] [core:warn] [pid 2753] AH00111: Config variable ${APACHE_RUN_USER} is not defined
[Mon Aug 08 14:52:00.502892 2016] [core:warn] [pid 2753] AH00111: Config variable ${APACHE_RUN_GROUP} is not defined
[Mon Aug 08 14:52:00.502966 2016] [core:warn] [pid 2753] AH00111: Config variable ${APACHE_LOG_DIR} is not defined
[Mon Aug 08 14:52:00.595580 2016] [core:warn] [pid 2753] AH00111: Config variable ${APACHE_LOG_DIR} is not defined
[Mon Aug 08 14:52:00.596803 2016] [core:warn] [pid 2753] AH00111: Config variable ${APACHE_LOG_DIR} is not defined
[Mon Aug 08 14:52:00.596883 2016] [core:warn] [pid 2753] AH00111: Config variable ${APACHE_LOG_DIR} is not defined
AH00543: apache2: bad user name ${APACHE_RUN_USER}
se eu executar netstat -tap
, obtenho isto:
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 localhost:mysql *:* LISTEN 1017/mysqld
tcp 0 0 *:webmin *:* LISTEN 1413/perl
tcp 0 0 *:ssh *:* LISTEN 538/sshd
tcp 0 64 raspberrypi.home:ssh static-xxx-xx-xx-:59984 ESTABLISHED 2011/sshd: pi [priv
tcp6 0 0 [::]:http [::]:* LISTEN 2613/apache2
tcp6 0 0 [::]:ssh [::]:* LISTEN 538/sshd
Meu usuário e grupo do apache estão configurados para www-data:www-data
Atualização:
Todo o tráfego sobre o http está funcionando, mas ele nem sequer tenta se conectar através de https, nada está aparecendo nos logs e a porta 443 está aberta tanto no iptables quanto no meu roteador
Tags debian apache-http-server