Nginx 에 모듈 추가

1432 단어
설 치 된 Nginx, 새 모듈 을 추가 해 야 합 니 다. 어떻게 해 야 합 니까?
순서
모듈 nginx - sticky - module - ng 을 예 로 들 면
  • Nginx 의 마지막 컴 파일 설치 매개 변수 보기
  • [~]$ nginx -V
    nginx version: nginx/1.10.0
    built by gcc 4.4.7 20120313 (Red Hat 4.4.7-17) (GCC) 
    built with OpenSSL 1.0.1e-fips 11 Feb 2013
    TLS SNI support enabled
    configure arguments: --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_v2_module --with-http_gzip_static_module --with-ipv6 --with-http_sub_module
    

    명령 출력 데이터 중 configure arguments 항목 의 내용 은 지난번 컴 파일 매개 변수 이 므 로 중복 사용 해 야 합 니 다.
  • 원본 Nginx 실행 파일 백업
  • 원본 Nginx 원본 패 키 지 를 다운로드 하고 압축 풀기
  • 제3자 확장 모듈 다운로드
  • git clone https://bitbucket.org/nginx-goodies/nginx-sticky-module-ng.git
    
  • 설치 해 야 할 새 모듈 을 추가 하여 재 컴 파일
  • 제3자 모듈 이 라면 디 렉 터 리 를 지정 합 니 다.내 장 된 모듈 이 라면 모듈 이름 을 지정 합 니 다.
    ./configure --prefix=/        --add-module=/       
    
    ./configure --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_v2_module --with-http_gzip_static_module --with-ipv6 --with-http_sub_module --add-module=./nginx-sticky-module-ng
    
    // make     install,      
    make
    
    //         
    sudo cp -rfp objs/nginx /usr/local/nginx/sbin/nginx
    

    원본 주소:https://shockerli.net/post/nginx-add-module/

    좋은 웹페이지 즐겨찾기