nginx 모듈 대부분은 모듈 설치 없이 nginx 에서 지원하고 있다.


http://nginx.org/en/docs/



그러나 특정 모듈은 컴파일시 특별히 옵션을 주어야 같이 설치가 되는 모듈이 있다.

예를 들어 ngx_http_ssl_module은 --with_http_ssl_module을 설정 매개변수를 주어야 사용할 수 있다. 

http://nginx.org/en/docs/http/ngx_http_ssl_module.html


The ngx_http_ssl_module module provides the necessary support for HTTPS.

This module is not built by default, it should be enabled with the --with-http_ssl_module configuration parameter.

This module requires the OpenSSL library.



또는 이미 포함된 모듈은 --without 접두사가 붙는 형태로 컴파일시 옵션으로 설치가 안되게 할 수 있다.

--without-http_access_module과 같이 사용한다.


기본적으로 nginx에 포함된 모듈과 포함되지 않는 모듈을 확인하기 위해서는 

다음 페이지를 방문한다. 자세히 설명된다.
http://wiki.nginx.org/Modules

http://nginx.org/en/docs/



Posted by '김용환'
,