UbuntuサーバにLet's Encryptをインストール。
概要
Ubuntu 24.04にLet's Encryptを導入します。
インストール
sudo aptitude install certbot
証明書発行
ここでは証明書のみを発行する手順です。
sudo certbot certonly --webroot -w /home/www-data -d hoge.example.com
-w
の後にサイトのドキュメントが格納されているディレクトリを、-d
の後にドメインを入れます。
-
Enter email address (used for urgent renewal and security notices)
ではメールアドレスを入れます。 -
order to register with the ACME server. Do you agree?
はYで承諾します。 - メールマガジンへの登録はy/nのいずれかを入力します。
その後、メールアドレスが登録され、
Certificate is saved at: /etc/letsencrypt/live/hoge.example.com/fullchain.pem
Key is saved at: /etc/letsencrypt/live/hoge.example.com/privkey.pem
と出たらOKです。