Linux下nginx的安装

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux下nginx的安装相关的知识,希望对你有一定的参考价值。

一、下载pcre

yum install pcre*

 

二、下载purge模块(删除nginx缓存)

wget http://labs.frickle.com/files/ngx_cache_purge-2.1.tar.gz
make && make install

 

三、安装zlib

wget http://prdownloads.sourceforge.net/libpng/zlib-1.2.8.tar.gz?download

tar zxvf zlib-1.2.8.tar.gz

./configure --prefix=/usr/local/zlib

make && make install

 

四、安装openssl

yum install openssl*


五、下载最新的nginx稳定版进行安装
wget http://nginx.org/download/nginx-1.8.1.tar.gz
tar zxvf *
./configure

--with-pcre

--add-module=  #purge可选

--prefix=/usr/local/nginx

--with-http_stub_status_module

--with-http_ssl_module

--with-zlib=

--with-openssl=

安装:make && make install

 

到安装目录下sbin启动nginx即可,访问localhost验证。

以上是关于Linux下nginx的安装的主要内容,如果未能解决你的问题,请参考以下文章

Linux下nginx的安装

linux 下nginx模块的安装

怎样在linux下安装nginx,pcre,zlib,openssl

linux下nginx安装

linux下安装nginx,centos安装nginx

怎样在linux下安装nginx,pcre,zlib,openssl