centos6 编译安装nginx
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos6 编译安装nginx相关的知识,希望对你有一定的参考价值。
yum install pcre pcre-devel openssl openssl-devel -y
useradd -M -s /sbin/nologin www
tar zxvf nginx-1.10.3.tar.gz
cd nginx-1.10.3
./configure \
--user=www \
--group=www \
--prefix=/usr/local/nginx \
--with-http_stub_status_module \
--with-http_ssl_module \
--with-http_gzip_static_module
make
make install
/usr/local/nginx/sbin/nginx
echo ‘/usr/local/nginx/sbin/nginx‘ >> /etc/rc.local
以上是关于centos6 编译安装nginx的主要内容,如果未能解决你的问题,请参考以下文章