0

为了在 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。

4

1 回答 1

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
  }
  ...
}

请注意,您也可以在 key 字段中设置 pem key。 http://meteor-up.com/docs.html#ssl-support

于 2019-02-28T15:20:19.367 回答