Certbot – это скрипт, который устанавливает на сервер сертификат SSL от Let’s Encrypt и поддерживает его актуальность. https://certbot.eff.org/
Ниже описан процесс установки сертификата и его использование в сервере Apache на ОС CentOS8.
Включаем в Apache на публичном IP адресе виртуальный хост
# nano /etc/httpd/conf.d/vhost80.conf
<VirtualHost <publicIP>:80>
DocumentRoot "/var/www/html"
ServerName <example.domain.ru>
</VirtualHost>
<publicIP> - публичный IP нашего сервера
<example.domain.ru> - имя нашего сервера
В файле /etc/httpd/conf/httpd.conf проверяем и убеждаемся, что в директиве Listen указаны все нужные прослушиваемые порты и IP адреса (указан публичный IP адрес и порт 80)
Если в файле /etc/httpd/conf/httpd.conf уже есть имя <example.domain.ru> комментируем его:
#ServerName <example.domain.ru>
Устанавливаем certbot
# dnf install certbot python3-certbot-apache
Получение сертификата без внесения изменений в конфигурацию Apache выполняется командой:
# certbot certonly --apache
Программа задаст ряд вопросов:
Сначало необходимо ввести адрес электронной почты
Saving debug log to /var/log/letsencrypt/letsencrypt.log
Plugins selected: Authenticator apache, Installer apache
Enter email address (used for urgent renewal and security notices)
(Enter 'c' to cancel): user@yandex.ru
Starting new HTTPS connection (1): acme-v02.api.letsencrypt.org
Затем согласиться с условиями лицензионного соглашения, введя A
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Please read the Terms of Service at
https://letsencrypt.org/documents/LE-SA-v1.2-November-15-2017.pdf. You must
agree in order to register with the ACME server at
https://acme-v02.api.letsencrypt.org/directory
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -(A)gree/(C)ancel: A
Следующий вопрос о том, можно ли на указанный выше электронный адрес отправлять рассылки. Я выбираю Y – да, можно.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Would you be willing, once your first certificate is successfully issued, to
share your email address with the Electronic Frontier Foundation, a founding
partner of the Let's Encrypt project and the non-profit organization that
develops Certbot? We'd like to send you email about our work encrypting the web,
EFF news, campaigns, and ways to support digital freedom.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -(Y)es/(N)o: Y
Следующий вопрос спрашивает, для какого по списку домена нужно сгенерировать сертификат. Я вижу только один домен и поэтому ввожу только цифру 1.
Which names would you like to activate HTTPS for?
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1: <example.domain.ru>
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Select the appropriate numbers separated by commas and/or spaces, or leave input
blank to select all options shown (Enter 'c' to cancel): 1
Скрипт начнет создание сертификата
Obtaining a new certificate
Performing the following challenges:
http-01 challenge for <example.domain.ru>
Waiting for verification...
Cleaning up challenges
Subscribe to the EFF mailing list (email: user@yandex.ru).
Starting new HTTPS connection (1): supporters.eff.org
Скрипт завершается сообщением:
IMPORTANT NOTES:
- Congratulations! Your certificate and chain have been saved at:
/etc/letsencrypt/live/example.domain.ru/fullchain.pem
Your key file has been saved at:
/etc/letsencrypt/live/example.domain.ru/privkey.pem
Your cert will expire on 2020-11-26. To obtain a new or tweaked
version of this certificate in the future, simply run certbot
again. To non-interactively renew *all* of your certificates, run
"certbot renew"
- Your account credentials have been saved in your Certbot
configuration directory at /etc/letsencrypt. You should make a
secure backup of this folder now. This configuration directory will
also contain certificates and private keys obtained by Certbot so
making regular backups of this folder is ideal.
- If you like Certbot, please consider supporting our work by:
Donating to ISRG / Let's Encrypt: https://letsencrypt.org/donate
Donating to EFF: https://eff.org/donate-le
Если во время работы скрипта не было ошибок, значит сертификат сгенерировался и находиться в директории: /etc/letsencrypt/
Внедряем сертификат в Apache. Создаем новый виртуальный хост для работы с сертификатом по HTTPS протоколу
# nano /etc/httpd/conf.d/ssl-vhost.conf
<IfModule mod_ssl.c>
<VirtualHost <publicIP>:443>
DocumentRoot /var/www/html/
ServerName <example.domain.ru>
ErrorLog /var/log/httpd/error_log
CustomLog /var/log/httpd/access_log combined
SSLCertificateFile /etc/letsencrypt/live/example.domain.ru/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/example.domain.ru/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost>
</IfModule>
Завершающий штрих – делаем переадресацию с HTTP на HTTPS, добавляя в файл виртуального хоста строки переадресации:
# nano /etc/httpd/conf.d/vhost80.conf
<VirtualHost <publicIP>:80>
DocumentRoot "/var/www/html"
ServerName <example.domain.ru>
RewriteEngine on
RewriteCond %{SERVER_NAME} =<example.domain.ru> [OR]
RewriteCond %{SERVER_NAME} =<publicIP>
RewriteRule ^ https:// <example.domain.ru> %{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>
Добавляем в crontab запуск скрипта обновления сертификата, как это рекомендуется на сайте https://certbot.eff.org
# nano /etc/crontab
# Обновление сертификатов HTTPS
0 0,12 * * * root /usr/bin/python3.8 -c 'import random; import time; time.sleep(random.random() * 3600)' && certbot renew -q
Комментариев нет:
Отправить комментарий