Skip to content

Renew SSL certificate for website automatically using shell and python

Notifications You must be signed in to change notification settings

ani10030/automatic-ssl-renewal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

automatic-ssl-renewal

Renew SSL certificate for website automatically using shell and python

SSL certificates these days are important for a website. However, SSL certificates are costly and difficult to maintain. I found one very widely used open source project that has an aim to secure the web and hence provides free SSL certificates - Let's Encrypt. You can navigate to Let's Encrypt project here. The free SSL certificates come with an expiry date which is 3 months of date of issue of SSL certificate from Let's Encrypt.

The code solves the purpose of manually renewing SSL certificates every three months. You can make changes is this code according to your website and hosting and then simply create a cron job to automatically renew SSL certificates for your website without human interference.

The code is divided into two parts:

1. auto_ssl_renewal.sh - which is a shell script.

This shell script will take care of downloading new SSL certificate from Let's Encrypt and completing the ACME challenges required by Let's Encrypt to verify your domain. Also, this shell script will be sending you relevant emails(Success/Failure) with logs for debugging purposes.

NOTE : You will need to first install certbot. You can use pip to install certbot

pip install certbot

certbot is expected to be run from a root user. However, this creates an issue for people using shared hosting as they won't get access to root user. The certbot command used in this script is a workaround, so that shared hosting users can generate SSL certificates with certbot.

2. install_ssl_cpanel.py - a python script to automate certificate installation in cpanel with selenium.

This python script uses browser automation with selenium to navigate into the cpanel of your domain and log in to it. Once logged in, it will navigate to the certificate installation page and install the newly obtained SSL certificate and key. It will also verify the existing and the new SSL expiry date to check if certificate installation was successful.

NOTE : You will need to install selenium library for python. Use pip to install selenium.

pip install selenium

This python uses PhantomJS as a browser for selenium to perform "headless" browsing. Websites usually are hosted on some unix server due to which browsers like Firefox or Chrome cannot be used by selenium. PhantomJS is a light weight browser which is perfect for this task. Download PhantomJS here.

Create a cron job to execute auto_ssl_renewal.sh and let it take care of renewing your free SSL certificates :)

About

Renew SSL certificate for website automatically using shell and python

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published