NGINX
๊ธฐ์กด Apache ๋ ์ฐจ์ด์
- apache
- ์์ฒญ๋ง๋ค ์ค๋ ๋ ํน์ ํ๋ก์ธ์ค ์์ฑ ๋ฐ ์ฒ๋ฆฌ
- nginx
- ์์ฒญ๋ง๋ค ๋น๋๊ธฐ ์ด๋ฒคํธ๋ฅผ ๋ฐ์์์ผ ์ฒ๋ฆฌ
proxy_pass
/etc/nginx/sites-available/default ๊ฒฝ๋ก๋ฅผ ๋ค์๊ณผ ๊ฐ์ด ์์ ํ๋ค.
์ด์ ํ์ผ์ ๋ฐฑ์ ํ๋ค.
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://localhost:8080;
}
}
Installation โ