Difference between revisions of "Installing SSL certificate in Apache"

From Notes_Wiki
m
m
Line 18: Line 18:
#Edit /etc/httpd/conf/ssl.conf and replace/insert following two values
#Edit /etc/httpd/conf/ssl.conf and replace/insert following two values
#:<pre>
#:<pre>
#::SSLProtocol all -SSLv2 -SSLv3
#:: SSLEngine on
#::SSLHonorCipherOrder on
#:: SSLProtocol all -SSLv2 -SSLv3 -TLSv1 -TLSv1.1
#::SSLCipherSuite "EECDH+ECDSA+AESGCM EECDH+aRSA+AESGCM EECDH+ECDSA+SHA384 EECDH+ECDSA+SHA256 EECDH+aRSA+SHA384 EECDH+aRSA+SHA256 EECDH+aRSA+RC4 EECDH EDH+aRSA !RC4 !aNULL !eNULL !LOW !3DES !MD5 !EXP !PSK !SRP !DSS"
#:: SSLHonorCipherOrder on
#:: SSLCipherSuite "EECDH+ECDSA+AESGCM:EECDH+aRSA+AESGCM:EECDH+ECDSA+SHA384:EECDH+ECDSA+SHA256:EECDH+aRSA+SHA384:EECDH+aRSA+SHA256:EECDH+aRSA!RC4:EECDH:!RC4:!aNULL:!eNULL:!LOW:!3DES:!MD5:!EXP:!PSK:!SRP:!DSS"
#:: Header always set Strict-Transport-Security "max-age=31536000"
#:</pre>
#:</pre>
#::In case of Virtualhost '<tt>SSLEngine On</tt>' line is also required.
#::In case of Virtualhost '<tt>SSLEngine On</tt>' line is also required.
#Check ranking of HTTPS security using https://www.ssllabs.com/ssltest/index.html
#Check ranking of HTTPS security using https://www.ssllabs.com/ssltest/index.html


Refer:
* https://www.mysterydata.com/how-to-get-a-score-rating-in-ssllabs-qualys/




Steps learned from https://www.sslshopper.com/article-how-to-disable-weak-ciphers-and-ssl-2.0-in-apache.html


<yambe:breadcrumb self="Installing SSL certificate in Apache">Security tips|Security tips</yambe:breadcrumb>
<yambe:breadcrumb self="Installing SSL certificate in Apache">Security tips|Security tips</yambe:breadcrumb>

Revision as of 21:33, 17 June 2021

<yambe:breadcrumb self="Installing SSL certificate in Apache">Security tips|Security tips</yambe:breadcrumb>

Install SSL certificate in apache

For installation of certificate in apache use following steps:

  1. Copy all (certificate, key, CA bundle) to /etc/httpd/conf folder
  2. chmod 400 ssl.key
  3. Edit /etc/httpd/conf.d/ssl.conf and replace appropriate values. Following three values need to be updated:
    SSLCertificateFile /etc/httpd/conf/ssl.pem
    SSLCertificateKeyFile /etc/httpd/conf/ssl.key
    SSLCACertificateFile /etc/httpd/conf/ca-bundle.pem
  4. Restart apache and verify that certificate is working as expected.


Securing Apache SSL configuration

Default SSL configuration of apache is vulnerable to many attacks. We can improve apache SSL configuration as follows:

  1. Edit /etc/httpd/conf/ssl.conf and replace/insert following two values
    SSLEngine on
    SSLProtocol all -SSLv2 -SSLv3 -TLSv1 -TLSv1.1
    SSLHonorCipherOrder on
    SSLCipherSuite "EECDH+ECDSA+AESGCM:EECDH+aRSA+AESGCM:EECDH+ECDSA+SHA384:EECDH+ECDSA+SHA256:EECDH+aRSA+SHA384:EECDH+aRSA+SHA256:EECDH+aRSA!RC4:EECDH:!RC4:!aNULL:!eNULL:!LOW:!3DES:!MD5:!EXP:!PSK:!SRP:!DSS"
    Header always set Strict-Transport-Security "max-age=31536000"
    In case of Virtualhost 'SSLEngine On' line is also required.
  2. Check ranking of HTTPS security using https://www.ssllabs.com/ssltest/index.html

Refer:


<yambe:breadcrumb self="Installing SSL certificate in Apache">Security tips|Security tips</yambe:breadcrumb>