実験環境を作るときに便利な無料ワイルドカードSSL証明書の発行方法
日付 | 2018.09.11 |
---|---|
タイトル | 実験環境を作るときに便利な無料ワイルドカードSSL証明書の発行方法 |
本文 | # EPELレポジトリ登録のインストール yum install epel-release # Let's Encryptのコマンドラインクライアントインストール yum install certbot python-certbot-apache # 証明書のマニュアル発行 certbot certonly --manual \ -d your.domain.name,*.your.domain.name \ -m your@mail.addr \ --agree-tos \ --manual-public-ip-logging-ok \ --preferred-challenges dns-01 \ --server https://acme-v02.api.letsencrypt.org/directory |