当Meteor客户端使用DDP.connect()
连接到DDP服务器时,它以纯文本格式发送。我们如何建立SSL加密的DDP连接?
答案 0 :(得分:0)
根据SocksJs README的问题,流星接收SockJs:From SockJS' point of view there is nothing special about SSL/HTTPS. Connecting between unencrypted and encrypted sites should work just fine.
我的代码:
var connection = DDP.connect("ws://127.0.0.1:3000");
如果从ws
切换到wss
(WebSocket Secure),如果主机支持ssl,则会使用它。在我的localhost中,我没有安装ssl并且它不会回退到'w',如果你愿意,你可以手动编写代码。