Let’s Encrypt SSL on Debian 9 with Apache web server

Estimated reading time: 1 min

Introduction

In this tutorial, you will learn the procedure of TLS/SSL certificate installation on Apache web server running on Debian 9 Stretch. Once you are finished, all traffic between server and client will be encrypted and safe. This is a standard practice of securing e-commerce websites and other financial services online.

Prerequisites

Before you begin working with this guide you’ll need these:

  • SSH with root access or sudo user access to Debian 9 Stretch VPS
  • The Apache web server with properly a domain and vhost configured

Step 1: Installing Let’sEncrypt certbot

The first step to using Let’s Encrypt to obtain an SSL certificate is to install the certbot Let’s Encrypt client on your server. To install run this:

sudo apt-get install certbot

Step 2: Create and install the SSL certificates)

Generating the SSL Certificate for Apache using the Let’s Encrypt client is quite straightforward. The client will automatically obtain and install a new SSL certificate that is valid for the domains in our Apache configuration. To execute the interactive installation and obtain a certificate for all of the domains de ned in your Apache configuration, type:

sudo certbot --apache

Step 3: Check the SSL certificate(s) configuration

At above stage your certificate is created and configured. Now check your domain virtualhost con g le with the ssl is like this or not. If not then put these manually on virtualhost’s ssl configuration:

...
SSLCertificateFile /etc/letsencrypt/live/<your-domain>/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/<your-domain>/privkey.pem
SSLCertificateChainFile /etc/letsencrypt/live/<your-domain>/chain.pem
...

Now need to test as our configuration goes right with this –

sudo apachectl configtest

Finally, restart apache and your SSL should start working now.

sudo service apache2 reload

Step 4: Setting up for the auto renewal

The Certbot packages on your system come with a cronjob that will renew your certificates automatically before they expire. Since Let’s Encrypt certificates last for 90 days, it’s highly advisable to take advantage of this feature. You can test automatic renewal for your certificates by running this command:

sudo certbot renew --dry-run

Conclusion

You have just secured your apache web server by implementing the most anticipated security feature – free SSL certificates! From now on all traffic between your domain webserver and client is secure, you can be assured that no one could intercept the communication and alter or steal crucial information.

Was this article helpful?
Dislike 17
Views: 43649

Reader Interactions

Comments

  1. Vla says

    Install Lets Encrypt on Debian 9 running apache web server…

    Why you began talk about nginx?

    See this command
    sudo nginx -t

    Bro, isn’t apache command. 🙁

    This guide confused me.

Leave a Reply

Your email address will not be published. Required fields are marked *