Let’s Encrypt allows to generate a free SSL certificate for almost anyone who owns a domain. Generating an SSL certificate
is very easy when you are behind a NGINX server or the IP Address is directly pointing to the server you are IN.
It gets a bit tricky in other cases. You have to use the certbot’s DNS challenge verifying ownership of the domain. Here
are the steps:
Install certbot
1 | sudo apt-add-repository ppa:certbot/certbot |
Requesting a certificate
Here I am requesting an wildcard SSL certificate for *.robin.engineer
. You can try using your domain.
1 | sudo certbot certonly --manual --preferred-challenges dns -d *.robin.engineer |
You will see an output like the following:
1 | Requesting a certificate for *.robin.engineer |
Automation of adding DNS record
In my case, I needed to add DNS record to the Azure platform. To add DNS record, you can run the following command:
1 | az network dns record-set txt add-record --resource-group myresourcegroup --zone-name robin.engineer --record-set-name _acme-challenge.robin.engineer --value "YFIQf3EDS1PG17pJ3hGiAS3xEtwr4CSA2noBbFYe2Yc" |
Helpful commands regarding DNS record automation
List zone list:
1 | az network dns zone list --query "[].name" |