OpenSSL テストが本番環境で動作しているにもかかわらず、失敗しているため、ホスティング サービスから SSL ポートを 443 から 8443 に変更するように指示されています。
Apacheports.conf
ファイルを次のように変更しました。
NameVirtualHost *:80
#NameVirtualHost *:443
NameVirtualHost *:8443
Listen 80
<IfModule mod_ssl.c>
# If you add NameVirtualHost *:443 here, you will also have to change
# the VirtualHost statement in /etc/apache2/sites-available/default-ssl
# to <VirtualHost *:443>
# Server Name Indication for SSL named virtual hosts is currently not
# supported by MSIE on Windows XP.
#Listen 443
Listen 8443
</IfModule>
<IfModule mod_gnutls.c>
#Listen 443
Listen 8443
</IfModule>
また、仮想ホストを から<VirtualHost *:443>
に変更して<VirtualHost *:8443>
apache を再起動しましたが、https 経由でサイトにアクセスしようとすると、ブラウザーにFirefox can't establish a connection to the server
. ファイアウォールの問題でしょうか?