이번에는 Node에서 https 서버를 시작하는 방법을 알려드리겠습니다. Node에서 https 서버를 시작할 때 주의사항은 무엇인가요? 다음은 실제 사례입니다.
먼저 https 인증서를 생성해야 합니다. 유료 웹사이트에서 구매하거나 일부 무료 웹사이트를 찾을 수 있습니다. 이는 키, crt 또는 pem으로 끝날 수 있습니다. OpenSSL을 통해 다음과 같은 다양한 형식을 변환할 수 있습니다.
openssl x509 -in mycert.crt -out mycert.pem -outform PEM
const https = require('https') const path = require('path') const fs = require('fs') // 根据项目的路径导入生成的证书文件 const privateKey = fs.readFileSync(path.join(dirname, './certificate/private.key'), 'utf8') const certificate = fs.readFileSync(path.join(dirname, './certificate/certificate.crt'), 'utf8') const credentials = { key: privateKey, cert: certificate, } // 创建https服务器实例 const httpsServer = https.createServer(credentials, async (req, res) => { res.writeHead(200) res.end('Hello World!') }) // 设置https的访问端口号 const SSLPORT = 443 // 启动服务器,监听对应的端口 httpsServer.listen(SSLPORT, () => { console.log(`HTTPS Server is running on: https://localhost:${SSLPORT}`) })
const express = require('express') const path = require('path') const fs = require('fs') const https = require('https') // 根据项目的路径导入生成的证书文件 const privateKey = fs.readFileSync(path.join(dirname, './certificate/private.key'), 'utf8') const certificate = fs.readFileSync(path.join(dirname, './certificate/certificate.crt'), 'utf8') const credentials = { key: privateKey, cert: certificate, } // 创建express实例 const app = express() // 处理请求 app.get('/', async (req, res) => { res.status(200).send('Hello World!') }) // 创建https服务器实例 const httpsServer = https.createServer(credentials, app) // 设置https的访问端口号 const SSLPORT = 443 // 启动服务器,监听对应的端口 httpsServer.listen(SSLPORT, () => { console.log(`HTTPS Server is running on: https://localhost:${SSLPORT}`) })
const koa = require('koa') const path = require('path') const fs = require('fs') const https = require('https') // 根据项目的路径导入生成的证书文件 const privateKey = fs.readFileSync(path.join(dirname, './certificate/private.key'), 'utf8') const certificate = fs.readFileSync(path.join(dirname, './certificate/certificate.crt'), 'utf8') const credentials = { key: privateKey, cert: certificate, } // 创建koa实例 const app = koa() // 处理请求 app.use(async ctx => { ctx.body = 'Hello World!' }) // 创建https服务器实例 const httpsServer = https.createServer(credentials, app.callback()) // 设置https的访问端口号 const SSLPORT = 443 // 启动服务器,监听对应的端口 httpsServer.listen(SSLPORT, () => { console.log(`HTTPS Server is running on: https://localhost:${SSLPORT}`) })
이 기사의 사례를 읽은 후 방법을 마스터했다고 생각합니다. 정보, PHP 중국어 기타 온라인 관련 기사에 주목하십시오!
추천 도서:
위 내용은 노드에서 https 서버를 시작하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!