Server version: 2.0.0
Client version: 2.0.0
It would appear that let's encrypt needs me to specify the chain.pem file as well as the private key and cert.
When configuring apache all 3 files need to be specified:
SSLCertificateFile /etc/letsencrypt/live/$DOMAIN/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/$DOMAIN/privkey.pem
SSLCertificateChainFile /etc/letsencrypt/live/$DOMAIN/chain.pem
I think adding ca_file might be needed and it'd pass in ca: ... to
|
return initialize_servers(() => new https.Server({ key, cert }), opts); |
Server version: 2.0.0
Client version: 2.0.0
It would appear that let's encrypt needs me to specify the chain.pem file as well as the private key and cert.
When configuring apache all 3 files need to be specified:
SSLCertificateFile /etc/letsencrypt/live/$DOMAIN/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/$DOMAIN/privkey.pem
SSLCertificateChainFile /etc/letsencrypt/live/$DOMAIN/chain.pem
I think adding ca_file might be needed and it'd pass in ca: ... to
horizon/cli/src/serve.js
Line 292 in a11ac62