为了在MUP中使用Letsencrypt SSL,我只是使用在配置文件中添加一个代理:
proxy: {
domains: 'mydomain.com,www.mudomain.com',
ssl: {
// Enable let's encrypt to create free certificates.
// The email is used by Let's Encrypt to notify you when the
// certificates are close to expiring.
letsEncryptEmail: 'user@candidsky.com'
// forceSSL: true
}
},
文档在这里
http://meteor-up.com/docs.html#ssl-support
但是我找不到有关如何使用自定义SSL的任何信息,我需要使用comodo SSL。
答案 0 :(得分:0)
这是一种方法
app: {
...
ssl: {
crt: './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
}
...
}
请注意,您也可以在密钥字段中设置pem密钥。 http://meteor-up.com/docs.html#ssl-support