nginx 설치 제3자 모듈

1432 단어 nginx
nginx 가 제3자 모듈 을 정상적으로 설치 하 는 방식 은 다음 과 같다.
./configure --prefix=/        --add-module=/       

   nginx 가 설치 되 지 않 은 상황 에서 제3자 모듈 을 설치 하 는 방식 은 다음 과 같다.
   
# ./configure --prefix=/usr/local/nginx-1.4.1 \
--with-http_stub_status_module \
--with-http_ssl_module --with-http_realip_module \
--with-http_image_filter_module \
--add-module=../ngx_pagespeed-master --add-module=/       
# make
# make install
# /usr/local/nginx-1.4.1/sbin/nginx

 
  만약 에 기계 에 nginx 가 설치 되 어 있다 면 다음 과 같은 방식 으로 제3자 모듈 을 설치 할 수 있 습 니 다.
# ./configure --prefix=/usr/local/nginx-1.4.1 \
 --with-http_stub_status_module \
 --with-http_ssl_module --with-http_realip_module \
 --with-http_image_filter_module \
 --add-module=../ngx_pagespeed-master
# make
# /usr/local/nginx-1.4.1/sbin/nginx -s stop
# cp objs/nginx /usr/local/nginx/sbin/nginx
# /usr/local/nginx-1.4.1/sbin/nginx

   두 가지 상황 에서 의 설 치 는 두 번 째 로 nginx 가 설치 되 었 을 때 제3자 모듈 을 설치 하 는 것 과 달리 실제 적 으로 - add - module 을 사용 하여 nginx 를 다시 설치 하 는 것 입 니 다. 그러나 우 리 는 make install 이 아니 라 컴 파일 디 렉 터 리 에 있 는 obbs / nginx 파일 을 오래된 nginx 파일 로 직접 덮어 씁 니 다. 만약 에 여러 개의 제3자 모듈 을 설치 하면대응 하 는 수의 목적 인 add - module 만 지정 하면 됩 니 다.
 다시 컴 파일 할 때 이전에 설 치 된 configure 인 자 를 추가 하 는 것 을 기억 해 야 합 니 다.

좋은 웹페이지 즐겨찾기