Erro 102 ao tentar usar o HTTPS

2

Estou tentando fazer com que meu certificado SSL funcione com o apache2 no Ubuntu.

O Chrome dá-me apenas o erro: Erro 102 (net :: ERR_CONNECTION_REFUSED):

Nesta configuração:     ServerAdmin webmaster @ localhost

DocumentRoot /var/www
<Directory />
    Options FollowSymLinks
    AllowOverride None
</Directory>
<Directory /var/www/>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None
    Order allow,deny
    allow from all
</Directory>

ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
    AllowOverride None
    Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
    Order allow,deny
    Allow from all
</Directory>

ErrorLog ${APACHE_LOG_DIR}/error.log

# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn

CustomLog ${APACHE_LOG_DIR}/ssl_access.log combined

Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
    Options Indexes MultiViews FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
    Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>

SSLEngine on

SSLCertificateFile /etc/apache2/ssl/swenet_info.crt
SSLCertificateKeyFile /etc/apache2/ssl/swenet_info.key  

<FilesMatch "\.(cgi|shtml|phtml|php)$">
    SSLOptions +StdEnvVars
</FilesMatch>
<Directory /usr/lib/cgi-bin>
    SSLOptions +StdEnvVars
</Directory>

BrowserMatch "MSIE [2-6]" \
    nokeepalive ssl-unclean-shutdown \
    downgrade-1.0 force-response-1.0
# MSIE 7 and newer should be able to use keepalive
BrowserMatch "MSIE [17-9]" ssl-unclean-shutdown

Como posso corrigir isso?

    
por Linus Odenring 04.02.2013 / 08:52

1 resposta

4

A conexão recusada sugere que o Apache não esteja escutando na porta 443 ou que haja um firewall rejeitando sua conexão no host do apache ou em algum lugar entre eles.

Se o apache não estiver atento a conexões (você pode verificar com netstat -ntpl | grep: 443) você deve adicionar um Ouça a diretiva para sua configuração, como

Listen 443
    
por 04.02.2013 / 10:05