私たちは現在LetsEncrypt SSL証明書を使用しており、うまくいきます。いくつかの変更を加えた後、TomcatとApache Webサーバーにも取り込むことができます。LetsEncrypt:LetsEncryptの中間証明書
現在、我々はintermediate CA
ファイルを要求するEtherPadにLetsEncrypt証明書を追加したいと考えています。 LetsEncryptによって提供される4つの証明書ファイルからそれらをどのように取得できますか。私はキーがprivkey.pem
がファイルを.KEYに変換し、.CRTはcert.pem
がcert.crtに変換されていると推測以上の構成において
"ssl" : {
"key" : "/path-to-your/epl-server.key",
"cert" : "/path-to-your/epl-server.crt",
"ca": ["/path-to-your/epl-intermediate-cert1.crt", "/path-to-your/epl-intermediate-cert2.crt"]
},
..
LetsEncryptのSSL設定をありがとうございます。 CAには何が入っていますか?
ありがとうございます。
更新
セッティング:
"ssl" : {
"key" : "/etc/letsencrypt/live/www.project_name.de-0001/private.key",
"cert" : "/etc/letsencrypt/live/www.project_name.de-0001/cert.crt",
"ca": "/etc/letsencrypt/live/www.project_name.de-0001/root.crt"
},
エラーログキーしようとしたとき:
[2016-11-04 13:25:15.612] [INFO] console - Report bugs at https://github.com/ether/etherpad-lite/issues
[2016-11-04 13:25:15.612] [INFO] console - Your Etherpad version is 1.6.0 (7dd934f)
[2016-11-04 13:25:15.613] [INFO] console - SSL -- enabled
[2016-11-04 13:25:15.613] [INFO] console - SSL -- server key file: /etc/letsencrypt/live/www.project_name.de-0001/private.key
[2016-11-04 13:25:15.614] [INFO] console - SSL -- Certificate Authority's certificate file: /etc/letsencrypt/live/www.project_name.de-0001/cert.crt
[2016-11-04 13:25:15.615] [ERROR] console - Error: EISDIR: illegal operation on a directory, read
[ダウンロードする](https://letsencrypt.org/certificates/)。 Lets Encryptの信頼の連鎖はかなり複雑ですが、それらのすべてを必要とすべきではありません。 –
@BoristheSpider:私はISRG Root X1をダウンロードし、そのcert1.crtを推測します。私はまず試してみる。ありがとうございました。 –
@BoristheSpider:あなたが提案した証明書ファイルを試しましたが、私はそれに誤りがあります。更新されたメインポストを確認してください。ありがとう。 –