我正在使用自签名证书加密流量数据。我的/etc/nginx/ssl/ .crt和.key文件位于
(some_file.key和some_file.crt)
我在http上使用socket.io,但试图将它转到https。以下是我的实际代码:
var formidable = require('formidable');
var express = require('express');
var fs = require('fs');
var privateKey = fs.readFileSync('../etc/nginx/ssl/some_file.key').toString();
var certificate = fs.readFileSync('../etc/nginx/ssl/some_file.crt').toString();
//how can I exclude this? (I have no intermediate, should I?)
var ca = fs.readFileSync('../intermediate.crt').toString();
var app = express.createServer({key:privateKey,cert:certificate,ca:ca });
var io = require('socket.io');
app.listen(3000, function(){
//wait on 3000
});
app.post('/posts', function(req, res){
//server communication
});
io.on('connection', function(socket){
//wait on connections
});
客户端:
var socket = io(url + ":3000", { "secure": true, 'connect timeout': 5000 });
是这样做的正确方法吗?i将我的https代码建立在示例基础上,所以我怀疑这是否足够好(我知道它不够好,但应该很接近)。当我运行代码时,我还会得到一个错误no such file or directory '../etc/nginx/ssl/some_file.key'
.
发布于 2015-02-01 16:28:16
我使用它的方式,虽然这是非常依赖于您正在使用的特快版本。这是3.4版的
var express = require('express')
, app = express()
,fs = require('fs')
,events = require('events');
...
var options = {
key: fs.readFileSync('/etc/nginx/ssl/some_file.key'),
cert: fs.readFileSync('/etc/nginx/ssl/some_file.crt')
};
/*
*Configuration
*
*/
var server = require('https').createServer(options, app), io = require("socket.io").listen(server);
var port = 8443;
var ipaddr = '0.0.0.0';
app.configure(function() {
app.set('port', port);
app.set('ipaddr', ipaddr);
app.use(express.bodyParser());
app.use(express.methodOverride());
...
});
https://stackoverflow.com/questions/28265731
复制