nginx 로 컬 구축 (mac)

1097 단어 nginx전단web대리
설치 하 다.
homebrew 설치 (mac 패키지 관리자)
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

설치 성공 여부 확인: brew - v
설치 nginx
   brew install nginx

설치 성공 여부 확인: nginx - v
nginx 시작 (기본 8080 포트)
brew services start(   restart) nginx

nginx 가 시작 되 었 는 지 확인 하고 브 라 우 저 에 입력 하 십시오:
localhost: 8080 (성공 하면 nginx 환영 페이지 표시)
설정 수정
설정 보기
cat /usr/local/etc/nginx/nginx.conf

설정 수정
vim /usr/local/etc/nginx/nginx.conf

데모 설정
server {
            listen       8080;
            server_name  localhost;

            charset utf-8;

            #access_log  logs/host.access.log  main;

            ##               
            location / {
                root   /Users/haha/Documents/app;
                index  index.html index.htm;
            }

            ##   
            location /api/ {
                proxy_pass http://172.32.2.6;
            }

        }

좋은 웹페이지 즐겨찾기