标签:ase ipv6 release ref lin lock rpm pid .gz
1、安装依赖包2、下载nginx
wget http://nginx.org/download/nginx-1.10.3.tar.gz
3、解压
tar xzf nginx-1.10.3.tar.gz
cd nginx-1.10.3
4、安装
./configure --prefix=/usr/local/nginx --conf-path=/usr/local/nginx/conf/nginx.conf --pid-path=/var/run/nginx/nginx.pid --lock-path=/var/lock/nginx.lock --user=nginx --group=nginx \
--with-http_ssl_module --with-http_stub_status_module --with-http_gzip_static_module --with-pcre --with-ipv6 --http-proxy-temp-path=/usr/local/nginx/tmp/proxy/ \
--with-http_ssl_module \
--with-http_flv_module \
--with-http_stub_status_module \
--with-http_gzip_static_module \
--http-client-body-temp-path=//usr/local/nginx/client \
--http-proxy-temp-path=/usr/local/nginx/proxy \
--http-fastcgi-temp-path=/usr/local/nginx/fcgi \
--http-uwsgi-temp-path=/usr/local/nginx/uwsgi \
--http-scgi-temp-path=/usr/local/nginx/scgi \
--with-pcre \
--with-file-aio \
--with-http_ssl_module \
--with-http_secure_link_module
make && make install
标签:ase ipv6 release ref lin lock rpm pid .gz
原文地址:http://blog.51cto.com/13484799/2137198