码迷,mamicode.com
首页 > 其他好文 > 详细

nginx安装

时间:2018-07-06 15:46:32      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:ase   ipv6   release   ref   lin   lock   rpm   pid   .gz   

1、安装依赖包
yum install gcc pcre pcre-devel vim glibc yum rpm* ntp epel-release openssl openssl-devel -y

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

nginx安装

标签:ase   ipv6   release   ref   lin   lock   rpm   pid   .gz   

原文地址:http://blog.51cto.com/13484799/2137198

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!