var express = require('express');
var app = express();
app.get('/', function (req, res) {
res.send('hello, http2!');
});
//llamando certificados
var options = {
key: fs.readFileSync('./example/localhost.key'),
cert: fs.readFileSync('./example/localhost.crt')
};
//estableciendo puerto con https
require('http2').createServer(options, app).listen(8080);
Comentarios
Publicar un comentario