https-ssl-example
Version:
zero-config HTTPS server example (complete with bogus TLS/SSL 2048-bit RSA PEM certs)
12 lines (10 loc) • 331 B
JavaScript
;
module.exports.create = function (server, host, port) {
// normall you'd return express or connect here
return function (req, res) {
res.end(
"\n\nMy name is Marvin, not that you would care."
+ "\n\nYou've reached " + host + " on port " + port + ". Meh... Congratulations, I guess."
);
};
};