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的主要内容,如果未能解决你的问题,请参考以下文章

CentOS6.5编译安装Nginx

centos6 编译安装nginx

nginx编译安装

基于CentOS6.5环境之下的LNMP之编译安装Nginx1.8.0 stable(稳定版)

centos6.5编译安装nginx[整理二]

Centos6.5源码编译安装nginx