2023-02-07 15:17:07
nginx 문법 검사를 돌리면 다음과 같은 경고문이 나온다.
➜ /bin sudo nginx -t
nginx: [warn] the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in /opt/nginx/conf/sites-enabled/설정파일.conf:51
nginx 설정 중 다음과 같은 구문이 존재한다.
ssl on;
이 부분이 현재 사용하지 않는 상태가 된 것이고 불필요한 문장이니 제거하면 된다.
대신 다음과 같이 ssl임을 명시한다.
listen 0.0.0.0:443 ssl;
다음과 같이 해당 경고문이 제거되었다.
➜ /bin sudo nginx -t
nginx: the configuration file /opt/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /opt/nginx/conf/nginx.conf test is successful