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);