nginx 모듈 대부분은 모듈 설치 없이 nginx 에서 지원하고 있다.
그러나 특정 모듈은 컴파일시 특별히 옵션을 주어야 같이 설치가 되는 모듈이 있다.
예를 들어 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
'Web service' 카테고리의 다른 글
google place의 map api 사용시 유의할 점 (위/경도) (0) | 2015.10.05 |
---|---|
Jquery.ajax 에서 json string 읽기 (0) | 2015.06.29 |
[nginx] ngx_http_upstream_module 모듈, upstream 기능 (0) | 2015.06.22 |
점검하다 - undergo maintainance (0) | 2015.05.02 |
log stash 재시작 (restart) (0) | 2015.03.24 |