Skip to content

Instantly share code, notes, and snippets.

@zhaiduo
Created March 26, 2012 16:55
Show Gist options
  • Save zhaiduo/2206472 to your computer and use it in GitHub Desktop.
Save zhaiduo/2206472 to your computer and use it in GitHub Desktop.
nodejs https
var https = require('https');
var fs = require('fs');
var options = {
key: fs.readFileSync('./nodejs.pem'),
cert: fs.readFileSync('./nodejs.crt')
};
https.createServer(options, function (req, res) {
res.writeHead(200);
res.end("hello world\n");
}).listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment