2012-06-09 120 views

回答

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

謝謝合併提交。 –

2

參考的docs看起來像HTTPS可以作爲一個選項,它應該是這樣的

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

希望這有助於

+0

謝謝。我不知道我怎麼會錯過它。 –