Showing posts with label letsencrypt. Show all posts
Showing posts with label letsencrypt. Show all posts

Wednesday, May 15, 2024

Letsencrypt : Generate Let’s Encrypt Wildcard SSL Certificate

1.Install Let’s Encrypt Certbot Tool#sudo apt-get OR dnf install letsencrypt2.Generate Let’s Encrypt Wildcard SSL Certificate#sudo certbot certonly --manual --preferred-challenges=dns --email webmaster@example.com --server https://acme-v02.api.letsencrypt.org/directory --agree-tos -d example.com  -d *.example.com 3.Certificates are generated and can be downloaded from the following path#/etc/letsencrypt/live/example.com/4.Generate...

Friday, May 13, 2022

Letsencrypt : Secure Apache on Ubuntu 20.04

Let’s Encrypt is a Certificate Authority (CA) that facilitates obtaining and installing free TLS/SSL certificates, thereby enabling encrypted HTTPS on web servers. 1. Installing Certbot#sudo apt install certbot python3-certbot-apache 2.Checking your Apache Virtual Host Configuration#sudo vi /etc/apache2/sites-available/your_domain.conf #sudo apache2ctl configtest#sudo systemctl reload apache23.Allowing...

Tuesday, February 16, 2016

Letsencrypt : Secure Apache on Virtualmin

The guide : FOLDER DOMAIN : In virtualmin directory FULL DOMAIN: www.example.com 1. First install Let's Encrypt script/programme Login to SSH and get root privileges (root/sudo -i): cd /home/<FOLDER DOMAIN>/ && git clone https://github.com/letsencrypt/letsencrypt OR cd /root/ && git clone https://github.com/letsencrypt/letsencrypt * This will download the Let's Encrypt...