apache2

Enable TLS 1.2 only in Apache Edit the virtual host section for your domain in the Apache SSL configuration file on your server and add set the SSLProtocol as follows. This will disable all older protocols and your Apache server and enable only TLSv1.2  SSLProtocol -all +TLSv1.2 Sample Apache virtual host with SSL : <VirtualHost *:443> ServerName www.example.com DocumentRoot /var/www/html SSLEngine...

Read More
letsencrypt

OPTIONAL - Install software-properties-common # apt-get install software-properties-common Step 1 — Download the Let’s Encrypt Client # sudo add-apt-repository ppa:certbot/certbot # apt-get update # apt-get install python-certbot-apache Step 2 — Set Up the Certificates Generating the first SSL certificate # sudo certbot --apache -d skayal.com   Generating the second SSL certificate # sudo certbot --apache -d test.com -d www.test.com Step 3 — Set Up Auto-Renewal # sudo crontab -e Add 15 3 * * * /usr/bin/certbot renew --quiet Verify status...

Read More