Nginx 컴 파일 설치

2181 단어
준비 과정
PCRE 라 이브 러 리 다운로드 (pcre 는 지원 되 지 않 을 수 있 습 니 다), zlib 라 이브 러 리 다운로드, Nginx 의 최신 코드 다운로드, 압축 해제
컴 파일 설치 과정
# ./configure --prefix=/usr --sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid  --lock-path=/var/lock/nginx.lock --with-http_ssl_module --with-http_flv_module --with-http_stub_status_module --with-http_gzip_static_module --http-client-body-temp-path=/var/tmp/nginx/client/ --http-proxy-temp-path=/var/tmp/nginx/proxy/ --http-fastcgi-temp-path=/var/tmp/nginx/fcgi/ --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi --http-scgi-temp-path=/var/tmp/nginx/scgi  --with-pcre=../pcre-8.00 --with-zlib=../zlib-1.2.11
# make && make install

부록
-- prefix \ # nginx 설치 디 렉 터 리, 기본 값 은 / usr / local / nginx -- pid - path \ # pid 질문 위치, 기본 값 은 logs 디 렉 터 리 -- lock - path \ # lock 질문 위치, 기본 값 은 logs 디 렉 터 리 -- with - httpssl_module \ # HTTPS 요청 을 지원 하기 위해 HTTP SSL 모듈 을 엽 니 다. -with-http_dav_module \ # WebDAV 확장 동작 모듈 을 열 면 파일 과 디 렉 터 리 에 권한 을 지정 할 수 있 습 니 다 -- with - httpflv_module \ # FLV 파일 에 대한 드래그 재생 지원 -- with - httprealip_module \ # 실제 소스 IP 주소 표시 지원 - with - httpgzip_static_module \ # 파일 전송 전 검사, 파일 중복 압축 방지 -- with - httpstub_status_module \ # nginx 의 운행 상 태 를 가 져 옵 니 다 -- with - mail \ # POP 3 / IMAP 4 / SMTP 프 록 시 모듈 을 허용 합 니 다 -- with - mailssl_module \ # POP 3 / IMAP / SMTP 는 SSL / TLS -- with - pcr = pcre - 8.39 \ # 설치 되 지 않 은 pcre 경 로 를 사용 할 수 있 습 니 다. pcre 2 는 -- with - zlib = zlib - 1.2.5 \ # 설치 되 지 않 은 zlib 경로 입 니 다. with - openssl = openssl - 1.1.1c \ # 설치 되 지 않 은 openssl - with - debug \ # 디 버 깅 로그 허용 - http - client - body - temp - path \ # 클 라 이언 트 요청 임시 파일 경로
-- http - proxy - temp - path \ # http proxy 임시 파일 경로 설정 -- http - fastcgi - temp - path \ # http fastcgi 임시 파일 경로 설정 -- http - uwsgi - temp - path = / var / tmp / nginx / uwsgi \ # uwsgi 임시 파일 경로 설정 -- http - scgi - temp - path = / var / tmp / ngix / scgi \ # scgi 임시 파일 경로 설정
증가: git clonehttps://github.com/fdintino/nginx-upload-module.git configure 시 인자 -- add - module =.. / nginx - upload - module 추가

좋은 웹페이지 즐겨찾기