首页 > 代码库 > 编译安装nginx 1.9.15

编译安装nginx 1.9.15

下载:
wget 增加用户:
groupadd www
useradd -g www -s /sbin/nologin -M www

安装:
tar -zxvf nginx-1.9.15.tar.gz 
cd nginx-1.9.15
less README  
./configure --help
yum install gcc-c++ pcre-devel.x86_64 libssl-dev openssl-devel.x86_64

./configure --user=www --group=www --prefix=/opt/app/nginx --with-pcre --with-http_ssl_module --with-http_addition_module --with-http_realip_module --with-http_flv_module --with-http_stub_status_module

make && make install


本文出自 “好记性不如烂笔头” 博客,请务必保留此出处http://cobweb.blog.51cto.com/390607/1845582

编译安装nginx 1.9.15