Linux/Apache/mod_ssl.md
... ...
@@ -209,6 +209,11 @@ CentOS 7
209 209
```
210 210
211 211
# Certbot (ワイルドカード, 自動)
212
+- 注意点
213
+ - テスト時は certbot のオプションに「--test-cert」を付け、テスト用の証明書を取得する。
214
+`certbot -h testing`
215
+ - 本番用証明書は取得回数に上限がある。7日間に5回まで。
216
+
212 217
- Certbot, DNS Plugin インストール (EPEL リポジトリ)
213 218
```
214 219
# yum -y install yum-utils
... ...
@@ -601,7 +606,9 @@ MIIGETCCBPmgAwIBAgISA3VBvI0cSyzAQGtpIaQKQRZxMA0GCSqGSIb3DQEBCwUA
601 606
602 607
# リンク
603 608
- [Let's Encrypt](https://letsencrypt.org/) Free SSL/TLS Certificates
604
- - [Certbot](https://certbot.eff.org/) / [DNS Plugins](https://certbot.eff.org/docs/using.html#dns-plugins) / [certbot-dns-rfc2136](https://certbot-dns-rfc2136.readthedocs.io/en/latest/) / [GitHub:certbot/certbot](https://github.com/certbot/certbot)
609
+ - [Certbot](https://certbot.eff.org/) / [GitHub:certbot/certbot](https://github.com/certbot/certbot)
610
+ - [DNS Plugins](https://certbot.eff.org/docs/using.html#dns-plugins) / [certbot-dns-rfc2136](https://certbot-dns-rfc2136.readthedocs.io/en/latest/)
611
+ - [Rate Limits](https://letsencrypt.org/docs/rate-limits/)
605 612
606 613
- [Webサーバー間通信内容暗号化(Apache+mod_SSL+Certbot) - CentOSで自宅サーバー構築](http://centossrv.com/apache-certbot.shtml)
607 614
- [CertbotとBINDの組み合わせでLet's Encryptのワイルドカード証明書を取得・更新する](https://qiita.com/yasuhirokimura/items/3a95e169f806b3772e06)