맥은 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 의 링크다.

 

'개발환경 설정 > mac' 카테고리의 다른 글

폴더  (0) 2019.08.21
  • /usr/local/bin
    brew, npm, mysql 같은 사용자 설치 프로그램들 링크가 있다.

'개발환경 설정 > mac' 카테고리의 다른 글

install nginx  (0) 2019.08.21

+ Recent posts