Tag Archives: https
Letsencrypt — easy way
Now you can install certbot-nginx and it will do everything for you. sudo yum install certbot-nginx And then sudo certbot —nginx -d example.com -d www.example.com If it does not work, try this sudo certbot -d example.com -d www.example.com and then select nginx in a prompt. https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-centos-7
Check ssl certificates on a host
openssl s_client -connect your-host:443 If it says something like gethostbyname failure then try following. It needs socat, which can be installed on macOs like this — brew install socat. Then in one terminal open socat TCP4-LISTEN:10443,fork TCP6:your-host:443 and in another terminal: openssl s_client -crlf -connect 127.0.0.1:10443
Https бесплатно
Первоначальный запуск ./certbot-auto certonly —webroot -w /var/www/<my>/htdocs -d <sub.domain.com> —email <your email> —agree-tos Удаление сертификата для домена ./certbot-auto delete и выбрать домен из списка Обновление сертификатов Делается регулярно, т.к. срок действия — 90 дней. Или внести в крон: ./path/to/certbot-auto renew —quiet или руками: ./path/to/certbot-auto renew# —dry-run https://letsencrypt.org/how-it-works/ https://certbot.eff.org/#centosrhel6-nginx Если при тестировании обновления с помощью команды …