Cách tạo tệp .pem cho máy chủ web https
Tôi đang sử dụng khung Express trong Node.js để tạo máy chủ web. Tôi muốn vận chuyển dựa trên SSL. Mã để tạo máy chủ web https như bên dưới. var app = express.createServer({ key: fs.readFileSync('./conf/key.pem'), cert: fs.readFileSync('./conf/cert.pem') }); module.exports = app; Câu hỏi: Làm cách nào để tạo key.pem …