Node.js로 HTTPS 서버 설정
Node.js 애플리케이션에 보안 연결을 제공하려면 HTTPS 서버 설정이 필요한 경우가 많습니다. 이를 통해 클라이언트와 서버 간의 데이터 전송을 암호화하여 기밀성과 무결성을 보장할 수 있습니다.
인증서로 HTTPS 서비스 생성
HTTPS 서비스를 설정하려면 서버에는 SSL 인증서와 키가 필요합니다. 방법은 다음과 같습니다.
<code class="javascript">const express = require('express'); const https = require('https'); const fs = require('fs'); // Load the SSL certificate and key const options = { key: fs.readFileSync('certificate.key'), cert: fs.readFileSync('certificate.crt') }; // Create an Express application const app = express(); // Use the HTTPS module to create an HTTPS server const server = https.createServer(options, app); // Start the server on a secure port (e.g., 443) server.listen(443, () => { console.log('HTTPS server listening on port 443'); });</code>
추가 참고 사항
위 내용은 안전한 데이터 전송을 위해 Node.js에서 HTTPS 서버를 설정하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!