2

有没有办法在 Flatiron 框架中使用 HTTPS 连接?

更新: HTTPS 服务器示例现在在github上可用。

4

2 回答 2

2

参考文档看起来像 https 可以作为一个选项添加,看起来应该像这样

{
  https: {
    cert: 'path/to/cert.pem',
    key: 'path/to/key.pem',
    ca: 'path/to/ca.pem'
  }
}

希望这可以帮助

于 2012-06-09T11:13:24.910 回答
1
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);
于 2012-06-10T11:08:36.453 回答