Computer/WEB, PHP-JAVA-Script
Node.js์์ ์น์๋ฒ ๋ฐ๋ก ๊ฐ๋ฅํ๋ฐ, Nginx๋ฅผ ์ฌ์ฉํ๋ ์ด์
Node.js๋ ์์ฒด์ ์ผ๋ก ์น ์๋ฒ๋ฅผ ์คํํ ์ ์๋ ๊ธฐ๋ฅ์ ์ ๊ณตํ๋ฉฐ, ์ด๋ฅผ ํตํด ์ง์ ์น ์ ํ๋ฆฌ์ผ์ด์
์ ์ด์ํ ์ ์๋ค.๊ฐ๋จํ ์๋ก, http ๋ชจ๋์ ์ฌ์ฉํ์ฌ ๊ธฐ๋ณธ์ ์ธ ์น ์๋ฒ๋ฅผ ์ค์ ํ ์ ์๋ค.const http = require('http');const hostname = '127.0.0.1';const port = 3000;const server = http.createServer((req, res) => { res.statusCode = 200; res.setHeader('Content-Type', 'text/plain'); res.end('Hello World\n');});server.listen(port, hostname, () => { console.log(`Server runnin..