2017-11-15 3 views
-1

Ich versuche Commodo SSL-Zertifikat und ich bearbeiten /etc/httpd/conf.d/ssl.conf aber meine Seite ist nicht gehen ssl https://giftboundgifts.comCentos7 Apache SSL

Das ist, was ich habe in ssl zu installieren. Konf-Datei:

<VirtualHost _default_:443> 

# General setup for the virtual host, inherited from global configuration 
DocumentRoot "/var/www/html/giftboundgifts" 
ServerName giftboundgifts.com 
ServerAlias www.giftboundgifts.com 
# Use separate log files for the SSL virtual host; note that LogLevel 
# is not inherited from httpd.conf. 
ErrorLog logs/ssl_error_log 
TransferLog logs/ssl_access_log 
LogLevel warn 
SSLEngine on 
SSLProtocol all -SSLv2 
SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5:!SEED:!IDEA 
SSLCertificateFile /etc/pki/tls/certs/giftboundgifts_com.crt 
SSLCertificateKeyFile /etc/pki/tls/private/giftboundgifts.key 
SSLCertificateChainFile /etc/pki/tls/certs/giftboundgifts_com.ca-bundle 

Antwort

0

Sie sollten zuerst überprüfen, dass das SSL-Modul geladen ist. Vom SERVER_ROOT Verzeichnis läuft:

# bin/httpd -M 
Loaded Modules: 
core_module (static) 
so_module (static) 
http_module (static) 
.. 
ssl_module (shared) 
.. 

Wenn Sie keine ssl_module in der zurückgegebenen Liste sehen, die auf die httpd.conf gehen und für die LoadModule- ssl_module Richtlinie aussehen und es Kommentar- wenn es kommentiert wird. Ansonsten ist das Modul wahrscheinlich gar nicht hier und wir müssen weiter überprüfen, wie Sie Ihren Apache installiert haben.