有没有办法在 Flatiron 框架中使用 HTTPS 连接?
更新: HTTPS 服务器示例现在在github上可用。
有没有办法在 Flatiron 框架中使用 HTTPS 连接?
更新: HTTPS 服务器示例现在在github上可用。
参考文档看起来像 https 可以作为一个选项添加,看起来应该像这样
{
https: {
cert: 'path/to/cert.pem',
key: 'path/to/key.pem',
ca: 'path/to/ca.pem'
}
}
希望这可以帮助
var flatiron = require('flatiron'),
app = flatiron.app;
app.use(flatiron.plugins.http, {
https: {
cert: 'path/to/cert.pem',
key: 'path/to/key.pem',
ca: 'path/to/ca.pem'
}
});
app.router.get('/', function () {
this.res.writeHead(200, { 'Content-Type': 'text/plain' });
this.res.end('Hello world!\n');
});
app.start(8080);