系统 ubuntu14.04 64位
1.安装模块需要的库
gzip 模块需要 zlib 库
rewrite 模块需要 pcre 库
ssl 功能需要 openssl 库
sudo apt-get install zlib1g-dev
sudo apt-get install libpcre3 libpcre3-dev libpcrecpp0
sudo apt-get install libssl-dev
2.http://nginx.org/en/download.html 选取一个版本的nginx的下载地址,利用wget工具下载源码包到本地.这里选取1.4.7.
wget http://nginx.org/download/nginx-1.4.7.tar.gz
解压
tar zxvf nginx-1.4.7.tar.gz
3.安装前配置
–with-http_stub_status_module:支持nginx状态查询
–with-http_ssl_module:支持https
–with-http_spdy_module:支持google的spdy, spdy是Google开发的基于TCP的应用层协议,用以最小化网络延迟,提升网络速度
–with-pcre:为了支持rewrite重写功能,必须制定pcre
–prefix: 指定安装位置
进入nginx源码目录
cd nginx-1.4.7
执行如下命令
./configure --prefix=/usr/local/nginx-1.4.7 \
--with-http_ssl_module --with-http_spdy_module \
--with-http_stub_status_module --with-pcre
输出如下内容,表示配置成功
4.编译
若未安装make,请先安装make
sudo apt-get install make
编译
make
make install
5.启动、关闭、重启
启动
直接执行可执行文件即可
/usr/loca/nginx-1.4.7/sbin/nginx
停止
/usr/loca/nginx-1.4.7/sbin/nginx -s stop
重启
有时更改了配置文件时使用
/usr/loca/nginx-1.4.7/sbin/nginx -s reload
可以通过curl查看nginx是否成功安装并运行
curl http://localhost
若成功,则输出如下信息
版权声明:本文为博主原创文章,未经博主允许不得转载。
原文地址:http://blog.csdn.net/aspnet_lyc/article/details/47011993