我正在努力使用Meteor mupx ssl配置,因为我无法将其与我的ssl提供商提供的文件进行协调:
{
"ssl": {
"certificate": "./bundle.crt", // this is a bundle of certificates
"key": "./private.key", // this is the private key of the certificate
"port": 443 // 443 is the default value and it's the standard HTTPS port
}
根据我的提供者,我有:
我尝试过这些文件的各种组合而没有成功。如何从这些文件构建bundle.crt?
答案 0 :(得分:0)
为了将来参考,解决方案是按照上面给出的顺序连接所有三个 - 但是要确保文件之间的开始和结束文件行位于不同的行上。当您使用cat命令时,它们最终会在同一行上。