[Apache] Invalid command 'SSLCertificateFile', perhaps misspelled or defined by a module not included in the server configuration
Apache に SSL の設定をして httpd configtest を実行したら、エラーがでました。
Invalid command 'SSLCertificateFile', perhaps misspelled or defined by a module not included in the server configuration
Apache が mod_ssl に対応してなかったので、mod_ssl を追加することでエラーが消えました。
mod_ssl の追加方法は、ソースからコンパイルしてインストールしている場合と、yum などでインストールしている場合とで違ってきます。
mod_sslインストール
# yum -y install mod_ssl
opensslインストール
# yum -y install openssl
以上です。