CentOS7で無料SSL証明書 Let's Encrypt メールサーバ編
前項 CentOS7で無料SSL証明書 Let's Encrypt
http://qiita.com/sin_w/items/931d0ce08c2e275ef650
でwebサービスに証明書を設定しましたが、ついでにメールサーバ機能へも組み込んでみます。
前提条件として
webサーバとmailサーバがおなじホストで動いていること
smtpはpostfix
pop3、imapサーバとしてdovecot
を使用し、オレオレ証明書を使って既に環境は構築済みで動作中とします。
postfixは
smtpd_tls_cert_file
smtpd_tls_key_file
をLet's Encryptで取得した鍵に置き換えます。
smtpd_tls_cert_file = /etc/letsencrypt/live/www.hoge.com/fullchain.pem
smtpd_tls_key_file = /etc/letsencrypt/live/www.hoge.com/privkey.pem
postfixを再起動します。
systemctl restart postfix
dovecotは
ssl_cert
ssl_key
をLet's Encryptで取得した鍵に置き換えます。
ssl_cert = </etc/letsencrypt/live/www.hoge.com/fullchain.pem
ssl_key = </etc/letsencrypt/live/www.hoge.com/privkey.pem
dovecotを再起動します。
systemctl restart dovecot
Author And Source
この問題について(CentOS7で無料SSL証明書 Let's Encrypt メールサーバ編), 我々は、より多くの情報をここで見つけました https://qiita.com/sin_w/items/7061d723f17e6f2b53c4著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .