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" 실행
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
간단! Certbot을 사용하여 웹 사이트를 SSL(HTTPS)화하는 방법초보자가 인프라 주위를 정돈하는 것은 매우 어렵습니다. 이번은 사이트를 간단하게 SSL화(HTTP에서 HTTPS통신)로 변경하는 방법을 소개합니다! 이번에는 소프트웨어 시스템 Nginx CentOS7 의 환경에서 S...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.