은승우

n

Showing 1 changed file with 9 additions and 1 deletions
......@@ -13,9 +13,17 @@ key: key,
cert: cert,
ca: ca
}, app).listen(80,()=>{
console.log('server on');
console.log('server on 80');
});
https.createServer({
key: key,
cert: cert,
ca: ca
}, app).listen(443,()=>{
console.log('server on 443');
});
//papago api
var request = require('request');
......