在Node.js 中建立HTTPS 伺服器
在Node.js 中,建立HTTPS 伺服器涉及利用httpsExpress 框架和「https」 '模組。以下是對該問題的詳細答案:
給定 SSL 金鑰和證書,如何建立 HTTPS 服務?
解決方案:
Express API 文件提供了有關如何實現此目的的明確說明。此外,以下步驟將協助您建立自簽名憑證:
var express = require('express'); var https = require('https'); var http = require('http'); var fs = require('fs'); // Import the certificate and key const options = { key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'), cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem') }; // Initialize the Express app const app = express(); // Create HTTP and HTTPS servers const httpsServer = https.createServer(options, app); const httpServer = http.createServer(app); // Set up the HTTP and HTTPS ports httpsServer.listen(443); httpServer.listen(80);
透過執行這些步驟,您可以使用提供的 SSL 金鑰和憑證在 Node.js 中成功建立 HTTPS 伺服器。
以上是如何在 Node.js 中建立帶有 SSL 憑證的 HTTPS 伺服器?的詳細內容。更多資訊請關注PHP中文網其他相關文章!