nginx 제3자 모듈 설치 방법

1980 단어
nginx 파일 은 매우 작 지만 성능 이 매우 효율 적 입 니 다. 이 부분 은 apache 보다 완 벽 히 이 겼 습 니 다. nginx 파일 이 작은 이유 중 하 나 는 nginx 자체 의 기능 이 상대 적 으로 적 습 니 다. 다행히 nginx 는 제3자 모듈 을 허용 하고 제3자 모듈 은 nginx 를 더욱 강하 게 만 들 었 습 니 다. 설치 모듈 에 있어 nginx 는 apache 설치 모듈 이 편리 하지 않 습 니 다. 물론 phop 설치 확장 도 편리 하지 않 습 니 다. 원생 nginx 에서그 는 모듈 을 동적 으로 불 러 올 수 없 기 때문에 제3자 모듈 을 설치 할 때 nginx 파일 을 덮어 써 야 합 니 다. 다음은 nginx 세 번 째 모듈 을 어떻게 설치 하 는 지 보 겠 습 니 다.
nginx 제3자 모듈 설치 방법:
 
  
./configure --prefix=/   --add-module=/

pagespeed 모듈 인 스 턴 스 설치
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 --add-module=/
# make
# make isntall
# /usr/local/nginx-1.4.1/sbin/nginx

nginx 가 설 치 된 상태 에서 nginx 모듈 을 설치 합 니 다.
 
  
# ./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 파일 을 한 단계 더 덮어 썼 습 니 다.
결론 적 으로 nginx 를 설치 하여 제3자 모듈 을 설치 하 는 것 은 실제 적 으로 "Cadd - module" 을 사용 하여 nginx 를 다시 설치 하 는 것 입 니 다. make install 대신 컴 파일 디 렉 터 리 아래 obbs / nginx 파일 을 오래된 nginx 파일 로 직접 덮어 씁 니 다. 여러 개의 nginx 제3자 모듈 을 설치 하려 면 해당 하 는 "Cadd - module" 몇 개 만 더 지정 하면 됩 니 다.
비고: 다시 컴 파일 할 때 이전에 컴 파일 된 모듈 을 configure 매개 변수 에 추가 해 야 합 니 다.
nginx 는 매우 많은 nginx 제3자 모듈 을 제공 하여 설치, 주 소 를 제공 합 니 다.http://wiki.nginx.org/3rdPartyModules

좋은 웹페이지 즐겨찾기