선 밖에 선 자유인

nginx 컴파일 옵션 본문

IT/System & Network

nginx 컴파일 옵션

Hotman 2016. 11. 8. 17:05

컴파일 옵션 예시


출처: https://gist.github.com/envi/5523460



./configure \

--prefix=/usr/local/stow/nginx \

--conf-path=/etc/nginx/nginx.conf \

--sbin-path=/usr/sbin \

--http-log-path=/var/log/nginx/access.log \

--error-log-path=/var/log/nginx/error.log \

--pid-path=/var/run/nginx.pid \

--lock-path=/var/lock/nginx.lock \

--http-client-body-temp-path=/var/lib/nginx/body \

--http-proxy-temp-path=/var/lib/nginx/proxy \

--http-fastcgi-temp-path=/var/tmp/nginx/fastcgi_temp \

--http-uwsgi-temp-path=/var/tmp/nginx/fastcgi_temp \

--http-scgi-temp-path=/var/tmp/nginx/fastcgi_temp \

--with-ipv6 \

--with-http_ssl_module \

--with-http_realip_module \

--with-http_addition_module \

--with-http_image_filter_module \

--with-http_sub_module \

--with-http_dav_module \

--with-http_flv_module \

--with-http_gzip_static_module \

--with-http_secure_link_module \

--with-http_stub_status_module \

--with-http_spdy_module \

--with-md5-asm \

--with-sha1-asm \

--with-openssl=/usr/src/openssl-1.0.1 \

--with-sha1=/usr/lib \

--user=www-data \

--group=www-data


make    

make install   


* ubuntu 에서 ssl 설정시에는 libssl-dev를 설치한 후 컴파일 옵션에서 --with-openssl 을 제외한다.


Comments