Nginx the “ssl“ directive is deprecated, use the “listen ... ssl“

1344 단어 Nginxssl
문제 설명
  • 설정 Nginx 은 다음 과 같은 알림 정 보 를 던 집 니 다.
  • [warn] 1#1: the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in /etc/nginx/conf.d/nginx.conf:22
    2021-01-21T03:02:01.837187000Z nginx: [warn] the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in /etc/nginx/conf.d/nginx.conf:22
    

    원인.
  • 새 버 전 nginx 이 새로운 방식 으로 감청 https 요청 을 하기 때문에 설정 수정
  • 이 필요 합 니 다.
    해결 하 다.
  • 삭제 ssl on, 수정 listen 443 ssl
  • #    (  )
    server {
          listen 443 ; ssl on; }
    
    #    (  )
    server {
          listen 443 ssl ; }
    

    좋은 웹페이지 즐겨찾기