맥은 brew로 간단하게 설치한다.
brew nginx
기본 포트 설정이 8080이다.
/usr/local/etc/nginx/nginx.conf 파일에서
server {
listen 8080;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
}
이부분을 수정하면 된다.
root html 은 --prefix=/usr/local/Cellar/nginx/1.17.3
적용을 받는다.
html은 /usr/local/var/www 의 링크다.