현재 LetsEncrypt SSL 인증서를 사용하고 있으며 제대로 작동합니다. 수정을 한 후에 Tomcat 및 Apache 웹 서버로 가져올 수 있습니다.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 루트 X1을 다운로드하고 cert1.crt를 추정합니다. 나는 먼저 시도 할 것이다. 고맙습니다. –
@BoristheSpider : 내가 제안한 인증서 파일을 시도했는데 오류가 발생했습니다. 업데이트 된 메인 포스트를 확인해 주시겠습니까? 감사. –