MacOS X 에 Nginx 를 설정 하 는 방법

2488 단어 nginx
전제 조건:
Xcode 의 명령 행 도구 설치 하기
원문 참조:
How to Configure and Install Nginx on Mac OS X
Nginx 설치:
1. 최신 버 전의 Nginx 다운로드 – nginx 1.4.7
2. 압축 풀기 "tar xvzf nginx - 1.4.7. tar. gz"
3. “cd nginx-1.4.7″
4. "sudo. / configure". 이 럴 때 오류 가 발생 합 니 다.
1
2
3
4
5
6
7 ./configure: error: the HTTP rewrite module requires the PCRE library.
  You can either disable the module by using --without-http_rewrite_module
  option, or install the PCRE library into the system, or build the PCRE library
  statically from the source with nginx by using --with-pcre=<         path         > option.
5. 홈 페이지 안내 "Building nginx from Sources" 를 읽 고 PCRE 를 다운로드 해 야 합 니 다.
6. PCRE 홈 페이지 에서 최신 PCRE 라 이브 러 리 다운로드
7. 다운로드 후 압축 풀기 "tar xvzf pcre - 8.34. tar. bz2 〃
8. 인자 가 다시 실 행 됩 니 다. "sudo. / configure – with - pcr = path"
9. 설정 완료.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 nginx path prefix: "/usr/local/nginx"
  nginx binary file: "/usr/local/nginx/sbin/nginx"
  nginx configuration prefix: "/usr/local/nginx/conf"
  nginx configuration file: "/usr/local/nginx/conf/nginx.conf"
  nginx pid file: "/usr/local/nginx/logs/nginx.pid"
  nginx error log file: "/usr/local/nginx/logs/error.log"
  nginx http access log file: "/usr/local/nginx/logs/access.log"
  nginx http client request body temporary files: "client_body_temp"
  nginx http proxy temporary files: "proxy_temp"
  nginx http fastcgi temporary files: "fastcgi_temp"
  nginx http uwsgi temporary files: "uwsgi_temp"
  nginx http scgi temporary files: "scgi_temp"<         i         > </         i         >
기본 경로 "/ usr / local / nginx".
10. nginx 를 설치 하고 "sudo make install" 을 입력 하 십시오.
11. 실행 가능 한 파일 찾기 "cd /usr/local/nginx/sbin”
12. Nginx "sudo. / nginx" 실행

좋은 웹페이지 즐겨찾기