Express 설정 ssl 인증서, 웹 사이트 오픈 https

1169 단어
본 고 는 express 에 대해 많이 소개 하지 않 고 다음 에 주 제 를 향 해 곧장 갑 니 다.
1. 인증서 다운로드 (텐 센트 클 라 우 드 를 예 로 들 면):
다운로드 한 압축 파일 을 풀 고 Nginx 폴 더 를 찾 습 니 다. crt 와 key 로 끝 나 는 파일 이 두 개 있 습 니 다. 프로젝트 루트 디 렉 터 리 에 https 라 는 빈 폴 더 를 새로 만 들 고 crt 파일 과 key 파일 을 https 폴 더 에 복사 합 니 다.
2. 프로젝트 설정:
1. bin 폴 더 의 ww 파일 을 찾 습 니 다. (프로젝트 에서 node server 를 시작 하 는 파일 입 니 다. 없 으 면 app. js 일 것 입 니 다.)
2. 파일 머리 에 다음 코드 를 추가 합 니 다.
var app = require('../app');
var https = require('https');
var fs = require('fs');
var path = require('path');

var privateCrt = fs.readFileSync(path.join(process.cwd(), 'https/1_www.kakayang.cn_bundle.crt'), 'utf8');
var privateKey = fs.readFileSync(path.join(process.cwd(), 'https/2_www.kakayang.cn.key'), 'utf8');
const HTTPS_OPTOIN = {
  key: privateKey,
  cert: privateCrt
};
const SSL_PORT = 443;
const httpsServer = https.createServer(HTTPS_OPTOIN, app);
httpsServer.listen(SSL_PORT, () => {
  console.log(`HTTPS Server is running on: https://localhost:${SSL_PORT}`);
});

좋은 웹페이지 즐겨찾기