nginx 제3자 모듈 설치 방법
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
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.