How to forcefully renew Let’s Encrypt certificate

To forcefully renew a Let’s Encrypt certificate, you will need to use the certbot command-line tool. The basic command to renew a certificate is: sudo certbot renew This command will check all installed certificates and renew them if they are about to expire. To forcefully renew a specific certificate, you can use the –force-renewal or … Read more

Debian 10 set up WireGuard VPN server

To set up a WireGuard VPN server on Debian 10, you will first need to install the WireGuard package by running the following command: sudo apt install wireguard -y Next, you will need to generate the necessary key pairs for the server and clients using the wg command: umask 077 wg genkey | tee privatekey … Read more

Ubuntu 20.04 set up WireGuard VPN server

Here are the general steps to set up a WireGuard VPN server on Ubuntu 20.04: Install the WireGuard package by running the following command: sudo apt install wireguard Create a new WireGuard configuration file for the server. You can do this by running the following command: sudo nano /etc/wireguard/wg0.conf This will open the Nano text … Read more