Node.js 搭建 https 协议 服务器

Posted winyh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Node.js 搭建 https 协议 服务器相关的知识,希望对你有一定的参考价值。

var https = require(‘https‘);   //创建服务器 https
var fs = require(‘fs‘);        //文件系统的模块
 
const hostname = ‘127.0.0.1‘;
const port = 3000;
 
var options = {
	key : fs.readFileSync(‘ssh_key.pem‘),   //读出 sytly 文件?
	cert : fs.readFileSync(‘ssh_cert.pem‘),   //同步读出 SSL 证书
}
 
const server = http.createServer(options ,(req, res) => {  //监听到请求后,回调 function   req 请求相关的信息(如:从哪来过来的,类型是get还是post等信息)
	// res 告诉服务器给这个请求响应的内容
  res.statusCode = 200;
  res.setHeader(‘Content-Type‘, ‘text/plain‘);  // 返回的请求头  200 成功  文本内容Content-Type   是 text/plain
  res.end(‘Hello World
‘);  //返回的内容,改变内容的重启服务 ctrl+c关掉, 再重启 node server.js
});
 
//listen 监听 来自 127.0.0.1 3000 的请求
 
server.listen(port, hostname, () => {
  console.log(`Server running at http://${hostname}:${port}/`);
});

  

以上是关于Node.js 搭建 https 协议 服务器的主要内容,如果未能解决你的问题,请参考以下文章

node.js搭建https服务器

iKcamp|基于Koa2搭建Node.js实战(含视频)? 代码分层

vue.js初级教程--02.环境搭建

利用node.js搭建简单web服务器的方法教程

node.js开发实战

重学Node.js 第1&2篇本地搭建Node环境并起RESTful Api服务