Let's Encrypt設定メモ

このサーバじゃないけれども。

# yum install mod_ssl
# yum install python-certbot-apache
# certbot --apache
# cd /etc/httpd/conf.d
# vi ssl.conf
SSLProtocol all -SSLv2 -SSLv3
SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5:!SEED:!IDEA:!RC4
# certbot renew --dry-run
# cd /etc/cron.weekly
# vi certbot

#!/bin/sh
/usr/bin/certbot renew >/dev/null 2>&1
exit 0

# chmod a+x certbot

最終更新日:2017/09/10

↑ トップページ