Nginx 컴 파일 매개 변수 상세 설명 (설명)
4860 단어 Nginx 컴 파일 매개 변수 상세 설명
Nginx 는 세 가지 버 전이 있 습 니 다. 안정 판, 개발 판 과 역사 안정 판 입 니 다.개발 판 지점 은 새로운 기능 과 버그 복 구 를 빨리 얻 을 수 있 지만, 동시에 새로운 버그 를 만 날 수도 있다.업데이트 가 안정 되면 안정 판 분기 가 들어간다.그러나 새로운 기능 이 반드시 낡은 안정 판 에 추 가 될 필 요 는 없다.
보통 안정 판 을 사용 하 는 것 을 권장 하지만 개발 버 전도 상당히 안정 적 이다.
원본 코드 를 압축 해제 한 후 터미널 에서 다음 명령 을 실행 합 니 다.
./configure
make
make install
컴 파일 상세 매개 변 수 는 다음 과 같 습 니 다:
#Nginx 。 , /usr/local/nginx。
--prefix=PATH
#Nginx 。 , , PATH/sbin/nginx。
--sbin-path=PATH
# -c nginx.conf 。 , PATH/conf/nginx.conf。
--conf-path=PATH
# nginx.conf pid , nginx.pid 。 , PATH/logs/nginx.pid。
--pid-path=PATH
#nginx.lock 。
--lock-path=PATH
# nginx.conf error_log , 。 , PATH/logs/error.log。
--error-log-path=PATH
# nginx.conf access_log , 。 , PATH/logs/access.log。
--http-log-path=PATH
# nginx.conf user , nginx 。 , nobody。
--user=USER
# nginx.conf user , nginx 。 , nobody。
--group=GROUP
#
--builddir=DIR
# rtsig
--with-rtsig_module
# SELECT , configure , ,kqueue(sun os)、epoll(linux kenel 2.6+)、rtsig( )
--with-select_module(--without-select_module)
# POLL , , 。
--with-poll_module(--without-poll_module)
# HTTP SSL , NGINX HTTPS 。 OPENSSL, DEBIAN libssl-dev
--with-http_ssl_module
--with-http_realip_module # ngx_http_realip_module
--with-http_addition_module # ngx_http_addition_module
--with-http_sub_module # ngx_http_sub_module
--with-http_dav_module # ngx_http_dav_module
--with-http_flv_module # ngx_http_flv_module
--with-http_stub_status_module # "server status"
--without-http_charset_module # ngx_http_charset_module
--without-http_gzip_module # ngx_http_gzip_module. , zlib 。
--without-http_ssi_module # ngx_http_ssi_module
--without-http_userid_module # ngx_http_userid_module
--without-http_access_module # ngx_http_access_module
--without-http_auth_basic_module # ngx_http_auth_basic_module
--without-http_autoindex_module # ngx_http_autoindex_module
--without-http_geo_module # ngx_http_geo_module
--without-http_map_module # ngx_http_map_module
--without-http_referer_module # ngx_http_referer_module
--without-http_rewrite_module # ngx_http_rewrite_module. PCRE 。
--without-http_proxy_module # ngx_http_proxy_module
--without-http_fastcgi_module # ngx_http_fastcgi_module
--without-http_memcached_module # ngx_http_memcached_module
--without-http_limit_zone_module # ngx_http_limit_zone_module
--without-http_empty_gif_module # ngx_http_empty_gif_module
--without-http_browser_module # ngx_http_browser_module
--without-http_upstream_ip_hash_module # ngx_http_upstream_ip_hash_module
--with-http_perl_module - # ngx_http_perl_module
--with-perl_modules_path=PATH # perl
--with-perl=PATH # perl
--http-log-path=PATH #Set path to the http access log
--http-client-body-temp-path=PATH #Set path to the http client request body temporary files
--http-proxy-temp-path=PATH #Set path to the http proxy temporary files
--http-fastcgi-temp-path=PATH #Set path to the http fastcgi temporary files
--without-http # HTTP server
--with-mail # IMAP4/POP3/SMTP
--with-mail_ssl_module # ngx_mail_ssl_module
--with-cc=PATH # C
--with-cpp=PATH # C
--with-cc-opt=OPTIONS #
--with-ld-opt=OPTIONS #Additional parameters passed to the linker. With the use of the system library PCRE in FreeBSD, it is necessary to indicate --with-ld-opt="-L /usr/local/lib".
--with-cpu-opt=CPU # CPU , :pentium, pentiumpro, pentium3, pentium4, athlon, opteron, amd64, sparc32, sparc64, ppc64
--without-pcre # PCRE 。 HTTP rewrite 。 "location" PCRE 。
--with-pcre=DIR # PCRE 。
--with-pcre-opt=OPTIONS # PCRE 。
--with-md5=DIR # MD5 。
--with-md5-opt=OPTIONS #Set additional options for md5 building.
--with-md5-asm #Use md5 assembler sources.
--with-sha1=DIR #Set path to sha1 library sources.
--with-sha1-opt=OPTIONS #Set additional options for sha1 building.
--with-sha1-asm #Use sha1 assembler sources.
--with-zlib=DIR #Set path to zlib library sources.
--with-zlib-opt=OPTIONS #Set additional options for zlib building.
--with-zlib-asm=CPU #Use zlib assembler sources optimized for specified CPU, valid values are: pentium, pentiumpro
--with-openssl=DIR #Set path to OpenSSL library sources
--with-openssl-opt=OPTIONS #Set additional options for OpenSSL building
--with-debug #
--add-module=PATH #Add in a third-party module found in directory PATH
, , ./configure --help 。