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。
谷歌了一会儿,找到了一个链接,但答案链接坏了
任何帮助都是可观的。
经过一番谷歌搜索,发现我们需要这样做
var https = require('https') , options = { key : 'ssl key' , cert : 'ssl cert' } ; var server = https.createServer(options, function (req, res) { }); ss.start(server.listen('8080'));