Last active
April 4, 2021 14:06
-
-
Save gseldon/3d262fe3f80ddcaac141b24a762cabef to your computer and use it in GitHub Desktop.
Linux. Nginx. SSL. Certbot.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Выпуск сертификата тест | |
certbot certonly -d site1 --dry-run | |
# Выпуск сертификата Итоговый | |
certbot certonly -d www.site.ru -d site2.ru | |
# Тест перевыпуска всех сертификатов | |
certbot renew --dry-run | |
# Удаление сертификата | |
certbot delete |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment