Let’s EncryptをCentOS 7.x にインストールしたときのメモです。
yumでインストールして対話型の設定になるので、楽に設定することができます。
エラーがー出やすい場所、バーチャルホストの設定など、幾つか注意が必要なところがあります。
Let’s Encryptインストール準備
epelがインストールされていないときはepelをインストールします。
# sudo yum install epel-release
Let’s Encryptのインストール(yum)
yumでLet’s Encrypt(certbot)をインストールします
certbotの実行はapache(httpd)をストップした状態で行います。(systemctl stop httpd)
# sudo yum install certbot python-certbot-apache
certbotの実行
certbotコマンドを実行すると対話式で設定することができます。
# certbot
[エラー]
Saving debug log to /var/log/letsencrypt/letsencrypt.log Certbot doesn't know how to automatically configure the web server on this system. However, it can still get a certificate for you. Please run "certbot certonly" to do so. You'll need to manually configure your web server to use the resulting certificate.
# cerbotでエラーが出たときは、下記を実行します。
# certbot certonly --standalone -d example.jp
インストール(対話式)
メールアドレスの入力を求められます。証明書の有効期限が迫った時にこのメールに通知されます。
# certbot Saving debug log to /var/log/letsencrypt/letsencrypt.log Plugins selected: Authenticator apache, Installer apache Enter email address (used for urgent renewal and security notices) (Enter 'c' to cancel):
規約への同意
lease read the Terms of Service at https://letsencrypt.org/documents/LE-SA-v1.2-November-15-2017.pdf. You must agree in order to register with the ACME server at https://acme-v02.api.letsencrypt.org/directory - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - (A)gree/(C)ancel:
ここは同意なので「A」を入力
Electronic Frontier Foundation にメールアドレスを登録するかどうか。EFFからの情報が送られますが、特に必要ない場合は受け取らないでOKです。
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Would you be willing to share your email address with the Electronic Frontier Foundation, a founding partner of the Let's Encrypt project and the non-profit organization that develops Certbot? We'd like to send you email about our work encrypting the web, EFF news, campaigns, and ways to support digital freedom. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - (Y)es/(N)o:
ここは「N」を入力。
複数のサイトがサーバー上にある場合、どのサイトをHTTPS化するかを選択します。
Which names would you like to activate HTTPS for? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1: www.example.com 2: test.example.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Select the appropriate numbers separated by commas and/or spaces, or leave input blank to select all options shown (Enter 'c' to cancel):
今回は1番を選択するので「1」を入力します。
自動的に証明書の取得が始まります。
HTTPSへのリダイレクト設定を行います。
Please choose whether or not to redirect HTTP traffic to HTTPS, removing HTTP access. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1: No redirect - Make no further changes to the webserver configuration. 2: Redirect - Make all requests redirect to secure HTTPS access. Choose this for new sites, or if you're confident your site works on HTTPS. You can undo this change by editing your web server's configuration. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Select the appropriate number [1-2] then [enter] (press 'c' to cancel):
今回は設定を希望しないので「1」を選択します。
Congratulations!と表示されたら完了です。
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Congratulations! You have successfully enabled https://www.example.com You should test your configuration at: https://www.ssllabs.com/ssltest/analyze.html?d=www.example.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
設定事項などの説明
IMPORTANT NOTES: - Congratulations! Your certificate and chain have been saved at: /etc/letsencrypt/live/www.example.com/fullchain.pem Your key file has been saved at: /etc/letsencrypt/live/www.example.com/privkey.pem Your cert will expire on 2018-11-23. To obtain a new or tweaked version of this certificate in the future, simply run certbot-auto again with the "certonly" option. To non-interactively renew *all* of your certificates, run "certbot-auto renew" - Your account credentials have been saved in your Certbot configuration directory at /etc/letsencrypt. You should make a secure backup of this folder now. This configuration directory will also contain certificates and private keys obtained by Certbot so making regular backups of this folder is ideal. - If you like Certbot, please consider supporting our work by: Donating to ISRG / Let's Encrypt: https://letsencrypt.org/donate Donating to EFF: https://eff.org/donate-le
HTTPS化のチェック事項
HTTPの混在状態
・画像ファイル(gif,jpg,png)
・css,js
・iframe
などがhttp状態になっていないかをチェック
混在状態の回避
・HTTPをHTTPSに301転送処理
・.htaccessやapacheのバーチャルホストの設定確認
・リンクタグがhttpsに変更されているか
・robots.txt,メタタグ(noindex)などがhttpsになっているか確認
ツール関係
・サイト内検索でhttpsを対象にするように設定
・解析ツールでhttpsが解析されるように設定(google analytics)
・google search consoleを設定
//モジュールの追加インストール #yum install -y mod_ssl git openssl
Apacheへの設定
下記のディレクトリの中にドメインごとに設定ファイルが生成されます。
# cd /etc/letsencrypt/live
cert.pem(サーバー証明書・公開鍵)
chain.pem(中間証明書)
fullchain.pem(サーバー証明書と中間証明書のパック)
privkey.pem(秘密鍵)
.htaccessの設定
<IfModule mod_rewrite.c> Options FollowSymLinks RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php?url=$1 [QSA,L] RewriteCond %{HTTPS} !=on [NC] RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] </IfModule>
apache2.4のvirtualhost設定
viでファイルを作成します。CentOS7はconf.dの中にドメイン名.confファイルを作ればバーチャルホストの設定として認識されます。
# vi /etc/httpd/conf.d/sample.example.com.conf
最低限の記載例です。(正式な運用時にはアクセスログやエラーの出力なども記載します)
<VirtualHost xxx.xxx.xxx.xxx:80> DocumentRoot /var/www/html/sample.example.com ServerName sample.example.com </VirtualHost> <VirtualHost xxx.xxx.xxx.xxx:443> SSLEngine on SSLCertificateFile /etc/letsencrypt/live/sample.example.com/cert.pem SSLCertificateKeyFile /etc/letsencrypt/live/sample.example.comm/privkey.pem SSLCertificateChainFile /etc/letsencrypt/live/sample.example.com/chain.pem DocumentRoot /var/www/html/sample.example.com ServerName sample.example.com </VirtualHost> <Directory "/var/www/html/sample.example.com/"> Require all granted AllowOverride ALL </Directory>