SSL/TLS証明書のインストール
まず、certbotをインストールする。
# apt -y install certbot
次にWebサーバーを止める。(apache利用時の例)
# systemctl stop apache2
次にletsencryptのSSL/TLS証明書をインストールする
# certbot certonly --standalone -d <HostName>
最後にWebサーバーを再起動する。
# systemctl restart apache2
まず、certbotをインストールする。
# apt -y install certbot
次にWebサーバーを止める。(apache利用時の例)
# systemctl stop apache2
次にletsencryptのSSL/TLS証明書をインストールする
# certbot certonly --standalone -d <HostName>
最後にWebサーバーを再起動する。
# systemctl restart apache2