码迷,mamicode.com
首页 > Web开发 > 详细

https服务

时间:2018-07-26 20:04:11      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:private   file   files   utf8   color   http   als   creates   code   

let fs = require(‘fs‘);
let https = require(‘https‘); 
let privateKey  = fs.readFileSync(‘cert/214123970110593.key‘, ‘utf8‘);
let certificate = fs.readFileSync(‘cert/214123970110593.pem‘, ‘utf8‘);
let credentials = {key: privateKey, cert: certificate};
https.createServer(credentials,app);

 

https服务

标签:private   file   files   utf8   color   http   als   creates   code   

原文地址:https://www.cnblogs.com/l8l8/p/9373749.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!