Personal Account
Registration and access
Payments & Finance
Communications and Notifications
Notifications
Integrations and bots
Status & Reference (Policies, Limits, Terms)
Restrictions & Policy
Terminology and Metrics
Servers: VPS/VDS and dedicated
Start and management
Providers: Hetzner
Providers: Contabo
Linux: access, administration, security
Access and Accounts
Software and Environments
Backups and FTP
Networking and Diagnostics (Linux)
Windows: Access, Administration, Networking
Connection and Access
Web Stack and Databases
Languages and PHP Environment
Certificates and Domains
VPN & Privacy
Client: Access and Applications
Game Hosting: Minecraft
Server Setup
AI and ML
Model Deployment
Reselling
Generating Let's Encrypt SSL
A step-by-step guide to creating a free SSL certificate from Let's Encrypt.
First, update the system package lists and repositories:
sudo apt-get -y update && sudo apt-get -y dist-upgrade
Â
Install CertBot:
sudo apt-get -y install certbot
Â
Next, install additional packages:
For Nginx:
sudo apt-get -y install python3-certbot-nginx
Â
For Apache2:
sudo apt-get -y install python3-certbot-apache
Â
Certificate generation:
Â
Please note that the Web server must be running.
For Nginx:
certbot certonly --nginx -d yoursite.com
Â
For Apache2:
certbot certonly --apache -d yoursite.com
If you cannot start the Web server, use the following command:
certbot certonly --standalone -d yoursite.com
Â
Use the following command to automatically renew the SSL certificate:
certbot renew
Â
From now on, the validity of your certificate will be checked automatically every day.








