nginx 컴 파일 및 추가 모듈

1. 일반 모듈 설치
nginx 의 help 정 보 를 통 해 각 모듈 의 추가 정 보 를 볼 수 있 습 니 다. without 가 있 는 것 은 기본 컴 파일 이 고 with 가 있 는 것 은 컴 파일 에 추가 해 야 합 니 다.
(1)with  모듈 추가
./configure --prefix=/       --with-  1 --with-  2

간단 한 두 모듈 설치 예시
./configure --prefix=/usr/local/nginx \
--with-http_stub_status_module \
--with-http_ssl_module

그리고 컴 파일 make 를 실행 하고 마지막 으로 설치 make install 을 실행 합 니 다.
(2) without 추가 할 필요 가 없 는 모듈 닫 기
without 가 있 는 모듈 은 컴 파일 이 필요 없 는 기본 값 으로 추 가 됩 니 다. 컴 파일 이 필요 하지 않 으 면 without 문 구 를 통과 할 수 있 습 니 다.
./configure --prefix=/       --without-  

예제 (upstream least conn module 모듈 닫 기):
./configure --prefix=/usr/local/nginx \
--with-http_stub_status_module \
--with-http_ssl_module \
--without-http_upstream_least_conn_module

2. 제3자 모듈 설치
제3자 모듈 은 로 컬 에 다운로드 한 후 add - module 을 통 해 설치 해 야 합 니 다.
./configure --prefix=/        --add-module=        

예시:
./configure --prefix=/usr/local/nginx \
--with-http_stub_status_module \
--with-http_ssl_module
--add-module=/usr/local/nginx-upstream-fair-master

3. 컴 파일 후 NGINX 모듈 의 추가 (재 컴 파일)
nginx 는 모듈 의 동적 추 가 를 지원 하지 않 습 니 다. 새로운 모듈 을 추가 해 야 할 때 덮어 씁 니 다.
nginx 를 다시 컴 파일 할 때마다 지난번 nginx 가 어떻게 컴 파일 되 었 는 지, 어떤 모듈 이 추가 되 었 는 지 알 아야 합 니 다.그래서 nginx 의 컴 파일 정 보 를 확인 해 야 합 니 다.
cd /usr/local/nginx/sbin
./nginx -V

실행 결과:
configure arguments: --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module

예 를 들 어 이번 에는 추가 해 야 합 니 다 http_realip_module nginx 의 압축 해제 디 렉 터 리 에서 실행
./configure --prefix=/usr/local/nginx \
--with-http_stub_status_module \
--with-http_ssl_module \
--with-http_realip_module

make 를 컴 파일 하고 make install 을 설치 합 니 다.
끝나 면 nginx / sbin /  디 렉 터 리 아래 nginx. old 가 나타 납 니 다.  파일, 이것 은 교 체 된 nginx 파일 입 니 다.
설 치 를 실행 하지 않 아 도 됩 니 다. make install 을 실행 하지 않 고 백업 복사 방식 을 사용 합 니 다.
백업: cp / usr / local / nginx / sbin / nginx / usr / local / nginx / sbin / nginx. bak
복사: cp. / objs / nginx / usr / local / nginx / sbin /
요약: 첫 번 째 컴 파일 을 설치 할 때 필요 한 모듈 을 추가 한 다음 세 단계 만 걸 으 면 됩 니 다. / configure, make, make install
          추가 모듈 을 업데이트 할 때 nginx - V 에서 컴 파일 정 보 를 보고 이전 컴 파일 정 보 를 다시 컴 파일 해 야 합 니 다.

좋은 웹페이지 즐겨찾기