설치 nginx 지원 https "ssl" 매개 변 수 를 설정 하려 면 ngxhttp_ssl_module

3606 단어
원본 링크:https://blog.seosiwei.com/detail/28
 
nginx 가 설치 되 어 있 고 ssl 모듈 이 설치 되 지 않 은 해결 방법:
Liux 에서 자신의 nginx 서버 를 컴 파일 하려 면 다음 을 참조 하 십시오.https://www.cnblogs.com/zkfopen/p/10118627.html
시작 Nginx SSL 모듈
Nginx 가 SSL 모듈 을 열지 않 으 면 Https 를 설정 할 때 다음 과 같은 오 류 를 알려 줍 니 다.
nginx: [emerg] the "ssl" parameter requires ngx_http_ssl_module in /usr/local/nginx/conf/nginx.conf

설명: nginx http 부족ssl_module 모듈, 설 치 된 nginx 에 ssl 모듈 을 추가 해 야 합 니 다.
설명: 내 nginx 설치 디 렉 터 리: / usr / local / nginx  , 원본 패 키 지 는 / usr / src / nginx - 1.5.9 디 렉 터 리 에 있 습 니 다.
Nginx SSL 모듈 오픈:
      :
cd /usr/src/nginx-1.5.9

  nginx     
/usr/local/nginx/sbin/nginx -V

 configure arguments:        configure    :
--prefix=/usr/local/nginx --with-http_stub_status_module

 
2: SSL 모듈 을 새로 설정 합 니 다.
  nginx     ,  :
./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module

설정 이 완료 되면 명령 make 명령 을 실행 합 니 다:
make

메모: make install 을 진행 할 수 없습니다. 그렇지 않 으 면 덮어 쓰기 설치 입 니 다.
 
3: 설 치 된 nginx 패키지 교체
교체 하기 전에 백업 하기:
cp /usr/local/nginx/sbin/nginx /usr/local/nginx/sbin/nginx.bak

nginx 서비스 정지:
//  nginx    
$ ps -ef | grep nginx

//    Nginx:
$kill -QUIT     

//    Nginx:
kill -TERM     

//    Nginx:
pkill -9 nginx

방금 컴 파일 된 nginx 를 원래 의 nginx 로 덮어 씁 니 다.
cp ./objs/nginx /usr/local/nginx/sbin/

그리고 nginx 를 시작 하면 명령 을 통 해 가입 여 부 를 확인 할 수 있 습 니 다.
/usr/local/nginx/sbin/nginx -V

configure arguments:
--prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module

다음으로 전송:https://www.cnblogs.com/zkfopen/p/10174930.html

좋은 웹페이지 즐겨찾기