Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在带有 SSL 的专用机器上使用 socketcluster。没有代理或类似的东西。
文档对此相当模糊。甚至可能吗?如何传递密钥和 crt 文件?
没关系,想通了。发布解决方案以防其他人需要快速提示:
在 scserver.js 中说 options = { ... } 添加:
protocol: 'https', protocolOptions: { key: fs.readFileSync('/path/to/key'), cert: fs.readFileSync('/path/to/crt'), ca: fs.readFileSync('/path/to/ca/bundle') }