# https
# 使用 Express 搭建 HTTPS 服务
```
var fs = require('fs');
var http = require('http');
var https = require('https');
var path = require('path');
var privateKey = fs.readFileSync(path.join(__dirname, 'ca', 'server.key'), 'utf8');
var certificate = fs.readFileSync(path.join(__dirname, 'ca', 'server.crt'), 'utf8');
var credentials = {key: privateKey, cert: certificate};
var express = require('express');
var app = express();
// your express configuration here
app.get('/a', (req, res) => {
res.send('https');
})
var httpServer = http.createServer(app); // 创建应用
var httpsServer = https.createServer(credentials, app); // 创建应用
httpServer.listen(8080);
httpsServer.listen(8443);
```
- NodeJs
- 01-万维网
- 02-CS 架构 VS BS 架构
- 03-Web 服务器访问流程
- 04-url
- 05-网络传输协议
- 06-HTTP 协议
- 07-报文
- 08-命令行界面
- 09-什么是 Node.js
- 10-环境安装及配置
- 11-JavaScript 代码运行环境
- 12-全局对象
- 13-Buffer
- 14-模块化
- 15-EventEmitter
- 16-path模块
- 17-流式操作
- 18-包
- 19-模板技术
- 20-ejs入门
- 21-express
- 01-什么是express
- 02-Hellow Express
- 03-静态资源服务
- 04-路由
- 05-模块化路由处理程序
- 06-中间件
- 07-手动实现中间件
- 08-常用内置中间件和第三方中间件
- 09-响应
- 10-获取请求参数
- 11-Express 中使用模板引擎
- 22-web存储与安全
- 01-cookie
- 02-sessionStorage
- 03-localStorage
- 04-base64
- 05-https
- 06-同源策略