ドメインでSSLを有効にする

ドメインでSSLを有効にする

特定のドメインで SSL を有効にしたいのですが、何も表示されません。ドメインは api.conoform.com です。

` # MIME タイプを修正 AddType text/css .css AddType text/html .php AddType text/html .htm AddType text/html .html AddType text/javascript .js AddType text/cache-manifest *.manifest *.manifest.php

<FilesMatch "\.manifest|\.manifest\.php$">
    ExpiresActive on
    ExpiresDefault "access"
</FilesMatch>

# Compress some files
AddOutputFilterByType DEFLATE text/html text/plain text/xml application/x-httpd-php application/x-httpd-php5 text/css application/x-javascript text/javascript application/javascript application/ecmascript

# Enable rewrite engine
RewriteEngine on

ErrorLog /var/www/.log/error-ssl
LogLevel debug

LimitInternalRecursion 50

SSLEngine on
SSLCertificateFile /etc/apache2/ssl/apache.crt
SSLCertificateKeyFile /etc/apache2/ssl/apache.key

DirectoryIndex index.php index.html index.htm
DocumentRoot /var/www/api.conoform.com/

`

何が間違っているのでしょうか?訪問すると「このページは利用できません」というメッセージが表示されますhttps://api.conoform.com/

よろしく、ケビン

答え1

SSH がポートを乗っ取ったようです。以下は Wireshark からのダンプです:

...........R..{UXSj....x..L]....H...5....$.+./..... ...9.5.........3.2...../. .............api.conoform.com...... .................#..3t.....". .spdy/2.spdy/3.spdy/3.1.http/1.1uO............ ....................SSH-2.0-OpenSSH_6.0p1 Debian-3ubuntu1

ご覧のとおり、SSH ヘッダーが出力されます。Putty (私の SSH クライアント) はポート 443 で動作します。SSH 構成を確認することをお勧めします。

関連情報