All Guides
SSL-сертификат Let's Encrypt
Получите бесплатный SSL/TLS сертификат с помощью Certbot.
Beginner10 мин.
Setup Steps
1. Install Certbot:
sudo apt install certbot -y2. Install the Apache plugin:
sudo apt install python3-certbot-apache -y3. Install the Nginx plugin:
sudo apt install python3-certbot-nginx -y4. Get a certificate with Apache:
sudo certbot --apache -d mysite.com -d www.mysite.com5. Get a certificate with Nginx:
sudo certbot --nginx -d mysite.com -d www.mysite.com6. Enter your email address and accept the terms
7. Test automatic renewal:
sudo certbot renew --dry-run8. Automatic renewal cron job (usually added automatically):
sudo crontab -e
# Add:
0 0,12 * * * certbot renew --quiet9. Check SSL status:
sudo certbot certificatesRelated Guides
Настройка Linux VPS (Ubuntu)
Настройте Ubuntu VPS-сервер с нуля. Безопасность и базовые настройки.
Установка Apache
Установите HTTP-сервер Apache и настройте виртуальные хосты.
Установка Nginx
Установите Nginx и настройте его как обратный прокси.
Установка Node.js и npm
Установите среду выполнения Node.js и менеджер пакетов npm.