1. Nginx란?Nginx는 웹 서버 소프트웨어로, 가벼움과 높은 성능을 목표로 한다.Nginx는 요청에 응답하기 위해 비동기 이벤트 기반 구조를 가진다. 이것은 아파치 HTTP 서버의 스레드/프로세스 기반 구조를 가지는 것과는 대조적이다. 1. 설치 $ brew install nginx 2. Nginx.conf 설정 $ vi /usr/local/etc/nginx/nginx.conf #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events { worker_connections 1024;..